public
Description: The full source code for projects used in Railscasts episodes.
Homepage: http://railscasts.com
Clone URL: git://github.com/ryanb/railscasts-episodes.git
100644 15 lines (11 sloc) 0.352 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Railscasts Episode #155: Beginning with Cucumber
 
http://railscasts.com/episodes/155
 
Commands
 
  rails blog
  sudo rake gems:install RAILS_ENV=test
  script/generate cucumber
  cucumber features -n
  script/generate rspec_model article title:string content:text
  rake db:migrate
  rake db:test:clone
  script/generate rspec_controller articles index