forked from resque/resque-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (28 loc) · 858 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
source 'https://rubygems.org'
gemspec
gem 'rails', '~> 4.0.3'
gem 'resque', :git => 'https://github.com/resque/resque.git', :branch => "1-x-stable"
gem 'sqlite3', :platforms => :ruby
gem 'activerecord-jdbcsqlite3-adapter', :platforms => :jruby
group :development, :test do
gem "dotenv-rails"
gem "rdoc"
end
group :test do
gem 'minitest-spec-rails', "~> 4.7.6"
gem 'coveralls', :require => false
gem 'redcard'
gem "mocha", :require => false
end
gem 'uglifier', '>= 1.0.3'
gem 'libv8', '~> 3.16.14.3', :platforms => :ruby
gem 'therubyracer', '~> 0.12.1', :platforms => :ruby
gem 'therubyrhino', '2.0.2', :platforms => :jruby
platforms :rbx do
# These are the ruby standard library
# dependencies and transitive dependencies.
gem 'rubysl', '~> 2.0'
gem 'racc'
gem 'rubinius-profiler'
gem 'rubinius-coverage'
end