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
dczarnecki-agora:fixtureapp dczarnecki$ rails generate scaffold person first_name:string last_name:string -r factory_girl | |
invoke active_record | |
create db/migrate/20101122182716_create_people.rb | |
create app/models/person.rb | |
invoke test_unit | |
create test/unit/person_test.rb | |
invoke factory_girl | |
create test/factories/people.rb | |
route resources :people | |
invoke scaffold_controller |
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
source 'http://rubygems.org' | |
gem 'rails', '3.0.3' | |
gem 'mysql2' | |
group :development do | |
gem 'rails3-generators' | |
end |
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
dczarnecki-agora:projects dczarnecki$ rails new fixtureapp -d mysql | |
create | |
create README | |
create Rakefile | |
create config.ru | |
create .gitignore | |
create Gemfile | |
... |
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
p 'Hello World' |
NewerOlder