-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 695 Bytes
/
Gemfile
File metadata and controls
34 lines (26 loc) · 695 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
29
30
31
32
33
34
source :gemcutter
#source "http://edge.merbivore.com"
merb_gems_version = "1.1.3"
gem "dalli"
gem "nokogiri", "1.3.3"
gem "mime-types", :require => "mime/types"
gem "json"
gem "haml"
gem "curb"
gem "merb-core", merb_gems_version
gem "merb-assets", merb_gems_version
gem "merb-haml", merb_gems_version
gem "rake"
group :development do
gem "thin" # for local development
gem "typhoeus" # for language import rake task
end
group :test do
gem "rspec", "2.0"#, "~> 1.3"
gem "webrat"
gem 'mocha'
end
# Only for the production servers
if RUBY_VERSION == "1.9.1" && RUBY_PLATFORM.include?("linux")
gem "bundler", "0.9.5"
end