Skip to content

Commit 50f4b00

Browse files
committed
Adding versions to Gemfile, and comments.
Gotta make sure we're getting the exact versions!
1 parent 692f159 commit 50f4b00

1 file changed

Lines changed: 21 additions & 13 deletions

File tree

Gemfile

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
1+
#The first part of any Gemfile is to list sources.
2+
#Most gems are located at rubygems.org
13
source "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"

0 commit comments

Comments
 (0)