Follow these steps to install graphite on OS X Mavericks.
- Homebrew
- Python 2.7
- Git
| RDSL Lexer | |
| ========== | |
| * It tokenizes | |
| ``` | |
| This is a group name | |
| ==================== | |
| ``` | |
| into | |
| ``` |
| [1] guard(main)> Run options: --seed 2796 | |
| # Running tests: | |
| . | |
| Finished tests in 0.001458s, 685.8711 tests/s, 685.8711 assertions/s. | |
| 1 tests, 1 assertions, 0 failures, 0 errors, 0 skips |
| RB.Object = { | |
| // Douglas Crockford's technique for object extension | |
| // http://javascript.crockford.com/prototypal.html | |
| create: function(){ | |
| function F(){} | |
| F.prototype = arguments[0]; | |
| var obj = new F(); | |
| // Add all the other arguments as mixins that | |
| // 'write over' any existing methods |
| # git completion | |
| source /usr/local/etc/bash_completion.d/git-completion.bash | |
| source /usr/local/etc/bash_completion.d/git-prompt.sh | |
| # unstaged (*) and staged (+) changes | |
| # export GIT_PS1_SHOWDIRTYSTATE=1 | |
| # If something is stashed, then a '$' will be shown next to the branch name | |
| # export GIT_PS1_SHOWSTASHSTATE=1 |
| class TestSuite: | |
| @patch('real_class_name') | |
| def test_case(self, mock_class): | |
| # Delay the evaluation of Mock() so that we get | |
| # a new mock object for each time the (mocked) | |
| # class constructor is called. | |
| def new_mock_obj(*args, **kwargs): | |
| mock_obj = Mock() | |
| mock_obj.some_function.return_value = 'w00t' |
| demo: | |
| provider: openstack | |
| auth_service: | |
| name: identity | |
| host_uri: http://192.168.42.11:5000 | |
| request: create_token | |
| validator: list_tenants | |
| api_version: v3 |
[sendemail]
smtpserver = smtp.gmail.com
smtpserverport = 587
smtpencryption = tls
smtpuser = <gmail email address>
from = <email address for From: field>
| kind: List | |
| apiVersion: v1beta3 | |
| items: | |
| - kind: ReplicationController | |
| apiVersion: v1beta3 |