forked from tute/merit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (33 loc) · 754 Bytes
/
Gemfile
File metadata and controls
40 lines (33 loc) · 754 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
35
36
37
38
39
40
source 'https://rubygems.org'
gemspec
version = ENV['RAILS_VERSION'] || '3.2'
rails = case version
when 'master'
{ github: 'rails/rails' }
when '4.0-protected-attributes'
gem 'protected_attributes'
"~> #{version}.0"
when '4.0'
"~> #{version}.0"
when '3.2'
gem 'strong_parameters'
"~> #{version}.0"
end
gem 'rails', rails
case ENV['ORM']
when 'active_record'
gem 'activerecord'
when 'mongoid'
gem 'mongoid', '3.1.0'
end
group :development, :test do
gem 'activerecord-jdbcsqlite3-adapter', :platforms => [:jruby]
gem 'sqlite3', '1.3.8', :platforms => [:ruby, :mswin, :mingw]
end
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'racc'
gem 'rubysl-test-unit'
gem 'rubinius-developer_tools'
end
gem 'coveralls', require: false