This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| multiuser on | |
| acladd user2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| screen -S pairprog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| screen -x user1/pairprog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ctrl-a d # detach screen window | |
| Ctrl-a Ctrl-a # flip-flop between two windows | |
| screen -r # re-attach screen window |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group :development do | |
| gem 'annotate' | |
| gem 'awesome_print', :require => "ap" | |
| gem 'heroku', '>= 2.1.2' | |
| gem 'hirb' | |
| gem 'interactive_editor' | |
| gem 'open_gem' | |
| gem 'rails-footnotes' | |
| gem 'ruby-debug' | |
| gem 'sketches' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for x in $(rvm list strings); do rvm use $x@global && gem install <RAD DEVELOPMENT GEM NAME>; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0.9.6c | |
| 0.9.6d | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| d16aeb86430afc26fb17f182f567d39c8c732188 refs/tags/0.9.6c | |
| 390c9a3251b813775ccdb96c375d50fed67d058f refs/tags/0.9.6d | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ^(.*) - the SHA (at the start of the line ^) | |
| (\s+) - a cupla spaces | |
| (.*[a-z])$ - a string ending in a letter, followed by end of line ($) (there are more exact/safer ways of doing this regexp, I know) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ git push origin :refs/tags/0.9.6c |