forked from RolifyCommunity/rolify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (29 loc) · 792 Bytes
/
Gemfile
File metadata and controls
32 lines (29 loc) · 792 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
source "https://rubygems.org"
group :test do
case ENV["ADAPTER"]
when nil, "active_record"
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0.rc", :platform => "jruby"
gem "sqlite3", :platform => "ruby"
gem "activerecord", ">= 3.2.0", :require => "active_record"
when "mongoid"
case ENV["MONGOID_VERSION"]
when nil, '5'
gem "mongoid", "~> 5"
when '4'
gem "mongoid", "~> 4"
when '3'
gem "mongoid", "~> 3"
end
gem "bson_ext", :platform => "ruby"
else
raise "Unknown model adapter: #{ENV["ADAPTER"]}"
end
gem 'coveralls', :require => false
gem 'its'
gem 'byebug'
gem 'pry-byebug'
gem 'test-unit' # Implicitly loaded by ammeter
gem 'database_cleaner'
gem 'codeclimate-test-reporter', :require => nil
end
gemspec