As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
I just had to set up Jenkins to use GitHub. My notes (to myself, mostly):
For setting up Jenkins to build GitHub projects. This assumes some ability to manage Jenkins, use the command line, set up a utility LDAP account, etc. Please share or improve this Gist as needed.
its isn't core to RSpec. One the of the focuses of RSpec is on the documentation aspects of tests. Unfortunately, its often leads to documentation output that is essentially lies. Consider this spec:
User = Struct.new(:name, :email)
describe User do
subject { User.new("bob") }
its(:name) { should == "bob" }
end| $ ssh vm-0.runfor.koding.kd.io | |
| Could not chdir to home directory /home/runfor: No such file or directory | |
| The authenticity of host 'vm-0.runfor.koding.kd.io (<no hostip for proxy command>)' can't be established. | |
| ECDSA key fingerprint is **********************. | |
| Are you sure you want to continue connecting (yes/no)? yes | |
| Warning: Permanently added 'vm-0.runfor.koding.kd.io' (ECDSA) to the list of known hosts. | |
| The programs included with the Ubuntu system are free software; | |
| the exact distribution terms for each program are described in the | |
| individual files in /usr/share/doc/*/copyright. |
| # ~/.ssh/config | |
| Host *.kd.io | |
| User runfor | |
| IdentityFile ~/.ssh/runfor | |
| ProxyCommand ssh %r@ssh.koding.com nc %h %p |
| =Navigating= | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| =Clicking links and buttons= | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |