-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (24 loc) · 751 Bytes
/
Gemfile
File metadata and controls
29 lines (24 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#The first part of any Gemfile is to list sources.
#Most gems are located at rubygems.org
source "http://rubygems.org"
#after that, we use the 'gem' statement to list what gems we want to use.
#we can also add version requirements so that we get the exact version.
#see more at http://gembundler.com/
gem "sinatra", "~>1.1"
gem "haml", "~>3.0.18"
gem "mongo_mapper", "~>0.8.4"
gem "rack-flash", "~>0.1.1"
gem "rdiscount", "~>1.6.5"
gem "i18n", "~>0.4.1"
gem "bson_ext", "~>1.1.5"
gem "pony", "~>1.0.1"
gem "sinatra-content-for"
group :test do
gem "launchy", "~>0.3.7"
gem "capybara", "~>0.3.9"
gem "factory_girl", "~>1.3.2"
gem "database_cleaner", "~>0.6.0"
gem "rspec", "~>2.1.0"
gem "webrat", "~>0.7.1"
gem "steak", "~>1.0.0"
end