File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #The first part of any Gemfile is to list sources.
2+ #Most gems are located at rubygems.org
13source "http://rubygems.org"
2- gem "sinatra"
3- gem "haml"
4- gem "rspec"
5- gem "cucumber"
6- gem "webrat"
7- gem "mongo_mapper"
8- gem "cucumber-sinatra"
9- gem "capybara"
10- gem "factory_girl"
11- gem "bson_ext"
12- gem "database_cleaner"
13- gem "rack-flash"
14- gem "rdiscount"
4+
5+ #after that, we use the 'gem' statement to list what gems we want to use.
6+ #we can also add version requirements so that we get the exact version.
7+
8+ #see more at http://gembundler.com/
9+
10+ gem "sinatra" , "=1.0"
11+ gem "haml" , "3.0.13"
12+ gem "rspec" , "=1.3.0"
13+ gem "cucumber" , "=0.8.3"
14+ gem "webrat" , "=0.7.1"
15+ gem "mongo_mapper" , "=0.8.2"
16+ gem "cucumber-sinatra" , "=0.2.2"
17+ gem "capybara" , "=0.3.9"
18+ gem "factory_girl" , "=1.3.1"
19+ gem "bson_ext" , "=1.0.1"
20+ gem "database_cleaner" , "=0.5.2"
21+ gem "rack-flash" , "=0.1.1"
22+ gem "rdiscount" , "=1.6.5"
You can’t perform that action at this time.
0 commit comments