This is some silly stuff I just added.But if you want to contribute something useful here, then just visit http://cheat.errtheblog.com/ and add it.
Or use: cheat --edit readme
Tom's Silly Stuff
=================$ cheat --add readme
Git Submodules
==============
See Scott Schacon's submodules screencast on gitcasts.com or Blip.tv.
(For a great screencast on Git, see
http://blip.tv/scott-chacon/git-talk-4113729 .)
To use a Git project that uses submodules:
$ git clone git://github.com/schacon/gitrack.git
$ git submodule init # Inits submodules (registers them for paths in the wdir)
$ cat .gitmodules
$ git submodule update
$ git submodule statusTom's Cucumber-with-Rails-3 Notes
=================================We assume here you have created an RVM gemset in your project directory.
See <project-directory>/.rvmrc and the output of 'rvm info' to check it.Add the following to the project's Gemfile:
===========================================
group :development do
gem 'rspec-rails'
endgroup :test do
gem 'rspec'
gem 'cucumber-rails'
gem 'webrat'
gem 'capybara'
gem 'database_cleaner'
endRun this command after changing the Gemfile:
============================================
bundle
https://github.com/a-b/cheat
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/a-b/cheat
- Owner: a-b
- Created: 2013-04-09T23:59:56.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-10T00:17:57.000Z (over 13 years ago)
- Last Synced: 2025-11-12T04:02:40.156Z (9 months ago)
- Language: Shell
- Size: 938 KB
- Stars: 2
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: readme.html
- Changelog: history.html
Awesome Lists containing this project
README
$ command line ruby cheat sheets