2012-11-28 00:59:58 +08:00
|
|
|
source 'https://rubygems.org'
|
2010-02-01 08:33:06 +08:00
|
|
|
|
2010-12-19 02:42:03 +08:00
|
|
|
gemspec
|
|
|
|
|
2014-09-14 16:21:55 +08:00
|
|
|
# We need a newish Rake since Active Job sets its test tasks' descriptions.
|
|
|
|
gem 'rake', '>= 10.3'
|
|
|
|
|
2016-03-04 15:42:53 +08:00
|
|
|
# This needs to be with require false to ensure correct loading order, as it has to
|
2015-10-12 19:48:04 +08:00
|
|
|
# be loaded after loading the test library.
|
2013-05-18 15:41:17 +08:00
|
|
|
gem 'mocha', '~> 0.14', require: false
|
|
|
|
|
2012-10-14 02:22:51 +08:00
|
|
|
gem 'rack-cache', '~> 1.2'
|
2015-12-18 14:12:50 +08:00
|
|
|
gem 'jquery-rails'
|
2014-10-13 09:27:27 +08:00
|
|
|
gem 'coffee-rails', '~> 4.1.0'
|
2016-02-05 19:32:22 +08:00
|
|
|
gem 'turbolinks', github: 'turbolinks/turbolinks-rails'
|
2011-09-09 01:51:23 +08:00
|
|
|
|
2014-02-22 04:58:09 +08:00
|
|
|
# require: false so bcrypt is loaded only when has_secure_password is used.
|
2015-10-12 19:48:04 +08:00
|
|
|
# This is to avoid Active Model (and by extension the entire framework)
|
2014-02-22 04:58:09 +08:00
|
|
|
# being dependent on a binary library.
|
2015-12-17 01:33:09 +08:00
|
|
|
platforms :mingw, :x64_mingw, :mswin, :mswin64 do
|
2015-12-17 00:43:32 +08:00
|
|
|
gem 'bcrypt-ruby', '~> 3.0.0', require: false
|
2015-12-17 01:33:09 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :ruby, :jruby, :rbx do
|
2015-12-17 00:43:32 +08:00
|
|
|
gem 'bcrypt', '~> 3.1.10', require: false
|
|
|
|
end
|
2014-02-22 04:58:09 +08:00
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# This needs to be with require false to avoid it being automatically loaded by
|
|
|
|
# sprockets.
|
2013-04-19 01:14:56 +08:00
|
|
|
gem 'uglifier', '>= 1.3.0', require: false
|
2015-09-30 22:42:31 +08:00
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# Track stable branch of sass because it doesn't have circular require warnings.
|
2015-09-30 22:42:31 +08:00
|
|
|
gem 'sass', github: 'sass/sass', branch: 'stable', require: false
|
2012-09-19 23:43:40 +08:00
|
|
|
|
2011-01-13 04:15:57 +08:00
|
|
|
group :doc do
|
2014-01-12 08:12:12 +08:00
|
|
|
gem 'sdoc', '~> 0.4.0'
|
2015-04-09 17:20:53 +08:00
|
|
|
gem 'redcarpet', '~> 3.2.3', platforms: :ruby
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'w3c_validators'
|
2015-01-31 22:01:34 +08:00
|
|
|
gem 'kindlerb', '0.1.1'
|
2011-01-13 04:15:57 +08:00
|
|
|
end
|
2009-11-11 06:59:22 +08:00
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# Active Support.
|
2012-09-07 06:45:51 +08:00
|
|
|
gem 'dalli', '>= 2.2.1'
|
2015-12-14 01:59:34 +08:00
|
|
|
gem 'listen', '~> 3.0.5', require: false
|
2010-07-26 06:31:45 +08:00
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# Active Job.
|
2014-08-20 10:21:39 +08:00
|
|
|
group :job do
|
|
|
|
gem 'resque', require: false
|
|
|
|
gem 'resque-scheduler', require: false
|
|
|
|
gem 'sidekiq', require: false
|
2016-01-28 00:29:18 +08:00
|
|
|
gem 'sucker_punch', require: false
|
2014-08-20 10:21:39 +08:00
|
|
|
gem 'delayed_job', require: false
|
2015-09-01 19:44:32 +08:00
|
|
|
gem 'queue_classic', github: "QueueClassic/queue_classic", branch: 'master', require: false, platforms: :ruby
|
2015-04-26 15:44:18 +08:00
|
|
|
gem 'sneakers', require: false
|
2014-08-20 10:21:39 +08:00
|
|
|
gem 'que', require: false
|
|
|
|
gem 'backburner', require: false
|
|
|
|
gem 'qu-rails', github: "bkeepers/qu", branch: "master", require: false
|
|
|
|
gem 'qu-redis', require: false
|
2015-03-06 05:41:14 +08:00
|
|
|
gem 'delayed_job_active_record', require: false
|
2014-08-18 15:19:41 +08:00
|
|
|
gem 'sequel', require: false
|
2014-08-20 10:21:39 +08:00
|
|
|
end
|
2014-08-12 17:29:21 +08:00
|
|
|
|
2015-12-14 23:38:37 +08:00
|
|
|
# Action Cable
|
|
|
|
group :cable do
|
|
|
|
gem 'puma', require: false
|
2016-01-24 18:43:40 +08:00
|
|
|
|
|
|
|
gem 'em-hiredis', require: false
|
2016-01-31 23:00:00 +08:00
|
|
|
gem 'hiredis', require: false
|
2016-01-24 18:43:40 +08:00
|
|
|
gem 'redis', require: false
|
2016-01-25 01:25:53 +08:00
|
|
|
|
|
|
|
gem 'faye-websocket', require: false
|
2015-12-14 23:38:37 +08:00
|
|
|
end
|
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# Add your own local bundler stuff.
|
2012-01-02 21:08:37 +08:00
|
|
|
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
|
2013-11-01 17:39:06 +08:00
|
|
|
instance_eval File.read local_gemfile if File.exist? local_gemfile
|
2010-11-06 05:11:58 +08:00
|
|
|
|
2013-03-12 02:48:30 +08:00
|
|
|
group :test do
|
2015-10-12 19:48:04 +08:00
|
|
|
# FIX: Our test suite isn't ready to run in random order yet.
|
2014-05-17 00:18:21 +08:00
|
|
|
gem 'minitest', '< 5.3.4'
|
|
|
|
|
2015-04-02 04:09:58 +08:00
|
|
|
platforms :mri do
|
2014-11-17 22:39:32 +08:00
|
|
|
gem 'stackprof'
|
2015-04-24 13:24:50 +08:00
|
|
|
gem 'byebug'
|
2014-11-17 22:39:32 +08:00
|
|
|
end
|
|
|
|
|
2013-03-12 02:49:05 +08:00
|
|
|
gem 'benchmark-ips'
|
2011-07-22 20:55:48 +08:00
|
|
|
end
|
|
|
|
|
2015-12-17 00:31:44 +08:00
|
|
|
platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
|
2015-12-18 06:35:25 +08:00
|
|
|
gem 'nokogiri', '>= 1.6.7.1'
|
2011-05-06 01:47:07 +08:00
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# Needed for compiling the ActionDispatch::Journey parser.
|
2013-02-26 13:10:03 +08:00
|
|
|
gem 'racc', '>=1.4.6', require: false
|
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# Active Record.
|
2012-05-16 11:25:30 +08:00
|
|
|
gem 'sqlite3', '~> 1.3.6'
|
2010-05-20 04:38:27 +08:00
|
|
|
|
|
|
|
group :db do
|
2015-02-11 06:58:39 +08:00
|
|
|
gem 'pg', '>= 0.18.0'
|
2015-11-27 02:53:10 +08:00
|
|
|
gem 'mysql2', '>= 0.4.0'
|
2010-05-20 04:38:27 +08:00
|
|
|
end
|
2010-07-26 06:31:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
2013-09-03 14:33:00 +08:00
|
|
|
if ENV['AR_JDBC']
|
|
|
|
gem 'activerecord-jdbcsqlite3-adapter', github: 'jruby/activerecord-jdbc-adapter', branch: 'master'
|
|
|
|
group :db do
|
|
|
|
gem 'activerecord-jdbcmysql-adapter', github: 'jruby/activerecord-jdbc-adapter', branch: 'master'
|
|
|
|
gem 'activerecord-jdbcpostgresql-adapter', github: 'jruby/activerecord-jdbc-adapter', branch: 'master'
|
|
|
|
end
|
|
|
|
else
|
|
|
|
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.3.0'
|
|
|
|
group :db do
|
|
|
|
gem 'activerecord-jdbcmysql-adapter', '>= 1.3.0'
|
|
|
|
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.3.0'
|
|
|
|
end
|
2013-08-21 02:31:43 +08:00
|
|
|
end
|
2010-01-01 10:49:27 +08:00
|
|
|
end
|
2010-08-17 04:58:17 +08:00
|
|
|
|
2014-07-24 01:24:16 +08:00
|
|
|
platforms :rbx do
|
2015-10-12 19:48:04 +08:00
|
|
|
# The rubysl-yaml gem doesn't ship with Psych by default as it needs
|
|
|
|
# libyaml that isn't always available.
|
2014-07-24 01:24:16 +08:00
|
|
|
gem 'psych', '~> 2.0'
|
|
|
|
end
|
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# Gems that are necessary for Active Record tests with Oracle.
|
2012-09-21 01:13:24 +08:00
|
|
|
if ENV['ORACLE_ENHANCED']
|
2010-08-17 04:58:17 +08:00
|
|
|
platforms :ruby do
|
2015-10-10 03:04:49 +08:00
|
|
|
gem 'ruby-oci8', '~> 2.2'
|
2010-08-17 04:58:17 +08:00
|
|
|
end
|
2012-09-21 01:13:24 +08:00
|
|
|
gem 'activerecord-oracle_enhanced-adapter', github: 'rsim/oracle-enhanced', branch: 'master'
|
2010-08-17 04:58:17 +08:00
|
|
|
end
|
2011-10-03 10:51:01 +08:00
|
|
|
|
2015-10-12 19:48:04 +08:00
|
|
|
# A gem necessary for Active Record tests with IBM DB.
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'ibm_db' if ENV['IBM_DB']
|
2015-09-15 07:12:09 +08:00
|
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|