forked from brianhempel/mongo_session_store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
54 lines (46 loc) · 1.3 KB
/
Gemfile
File metadata and controls
54 lines (46 loc) · 1.3 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
source 'https://rubygems.org'
RAILS_VERS = case ENV['RAILS_VERS']
when '3.1'
'~>3.1'
when '3.2'
'~>3.2'
when '4.0'
'~>4.0'
when '4.1'
'~>4.1.0.rc1'
when nil
nil
else
raise "Invalid RAILS_VERS. Available versions are 3.2 and 4.0."
end
gemspec :name => 'mongo_session_store-rails4'
group :development, :test do
gem 'rake'
if ENV['MONGO_SESSION_STORE_ORM'] == 'mongo_mapper'
gem 'mongo_mapper', '>= 0.13.0.beta2'
end
if ENV['MONGO_SESSION_STORE_ORM'] == 'mongoid'
if ENV['RAILS_VERS'] =~ /4\.\d/
gem 'mongoid', '>= 4.0.0.beta1'
else
gem 'mongoid', '>= 3.1.0'
end
end
if ENV['MONGO_SESSION_STORE_ORM'] == 'mongo'
gem 'mongo'
end
gem 'debugger', :platforms => [:ruby_19, :ruby_20, :ruby_21] unless ENV['TRAVIS']
if RUBY_PLATFORM == 'java'
gem 'jdbc-sqlite3'
gem 'activerecord-jdbc-adapter'
gem 'activerecord-jdbcsqlite3-adapter'
gem 'jruby-openssl'
gem 'jruby-rack'
else
gem 'sqlite3' # for devise User storage
end
RAILS_VERS ? gem('rails', RAILS_VERS) : gem('rails')
gem 'minitest' if ENV['RAILS_VERS'] == '4.1'
gem 'rspec-rails', '2.12.0'
gem 'devise'
end