forked from collectiveidea/delayed_job
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
42 lines (34 loc) · 962 Bytes
/
Gemfile
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
source 'https://rubygems.org'
rails_version = ENV['RAILS_VERSION'] || ''
gem 'rake'
platforms :ruby do
gem 'sqlite3'
end
platforms :jruby do
gem 'jruby-openssl'
if rails_version == 'edge' || rails_version.match(/5\.\d+\.\d+/)
gem 'activerecord-jdbcsqlite3-adapter',
:git => 'https://github.com/jruby/activerecord-jdbc-adapter.git',
:branch => 'rails-5'
else
gem 'activerecord-jdbcsqlite3-adapter'
end
gem 'mime-types', ['~> 2.6', '< 2.99']
end
platforms :rbx do
gem 'psych'
end
group :test do
if ENV['RAILS_VERSION'] == 'edge'
gem 'actionmailer', :github => 'rails/rails'
gem 'activerecord', :github => 'rails/rails'
else
gem 'actionmailer', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.2'])
gem 'activerecord', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.2'])
end
gem 'coveralls', :require => false
gem 'rspec', '>= 3'
gem 'rubocop', '>= 0.25', '< 0.49'
gem 'simplecov', '>= 0.9'
end
gemspec