2016-08-06 17:23:19 +00:00
|
|
|
source "https://rubygems.org"
|
2010-02-01 00:33:06 +00:00
|
|
|
|
2016-09-14 00:19:09 +00:00
|
|
|
git_source(:github) do |repo_name|
|
|
|
|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
|
|
|
|
"https://github.com/#{repo_name}.git"
|
|
|
|
end
|
|
|
|
|
2010-12-18 18:42:03 +00:00
|
|
|
gemspec
|
|
|
|
|
2016-12-29 07:20:50 +00:00
|
|
|
gem "arel", github: "rails/arel"
|
|
|
|
|
2014-09-14 08:21:55 +00:00
|
|
|
# We need a newish Rake since Active Job sets its test tasks' descriptions.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "rake", ">= 11.1"
|
2014-09-14 08:21:55 +00:00
|
|
|
|
2016-03-04 07:42:53 +00:00
|
|
|
# This needs to be with require false to ensure correct loading order, as it has to
|
2015-10-12 11:48:04 +00:00
|
|
|
# be loaded after loading the test library.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "mocha", "~> 0.14", require: false
|
2013-05-18 07:41:17 +00:00
|
|
|
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "rack-cache", "~> 1.2"
|
|
|
|
gem "jquery-rails"
|
|
|
|
gem "coffee-rails"
|
|
|
|
gem "sass-rails"
|
|
|
|
gem "turbolinks", "~> 5"
|
2011-09-08 17:51:23 +00:00
|
|
|
|
2014-02-21 20:58:09 +00:00
|
|
|
# require: false so bcrypt is loaded only when has_secure_password is used.
|
2015-10-12 11:48:04 +00:00
|
|
|
# This is to avoid Active Model (and by extension the entire framework)
|
2014-02-21 20:58:09 +00:00
|
|
|
# being dependent on a binary library.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "bcrypt", "~> 3.1.11", require: false
|
2014-02-21 20:58:09 +00:00
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# This needs to be with require false to avoid it being automatically loaded by
|
|
|
|
# sprockets.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "uglifier", ">= 1.3.0", require: false
|
2015-09-30 14:42:31 +00:00
|
|
|
|
2016-07-28 02:36:24 +00:00
|
|
|
# FIXME: Remove this fork after https://github.com/nex3/rb-inotify/pull/49 is fixed.
|
2016-09-14 00:19:09 +00:00
|
|
|
gem "rb-inotify", github: "matthewd/rb-inotify", branch: "close-handling", require: false
|
2016-07-28 02:36:24 +00:00
|
|
|
|
2016-11-15 00:26:03 +00:00
|
|
|
# Explicitly avoid 1.x that doesn't support Ruby 2.4+
|
|
|
|
gem "json", ">= 2.0.0"
|
|
|
|
|
2016-11-28 03:12:33 +00:00
|
|
|
gem "rubocop", require: false
|
|
|
|
|
2011-01-12 20:15:57 +00:00
|
|
|
group :doc do
|
2016-12-25 08:55:21 +00:00
|
|
|
gem "sdoc", "1.0.0.rc1"
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "redcarpet", "~> 3.2.3", platforms: :ruby
|
|
|
|
gem "w3c_validators"
|
2016-12-18 15:13:50 +00:00
|
|
|
gem "kindlerb", "~> 1.2.0"
|
2011-01-12 20:15:57 +00:00
|
|
|
end
|
2009-11-10 22:59:22 +00:00
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# Active Support.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "dalli", ">= 2.2.1"
|
2016-10-03 11:28:17 +00:00
|
|
|
gem "listen", ">= 3.0.5", "< 3.2", require: false
|
2016-11-19 15:46:28 +00:00
|
|
|
gem "libxml-ruby", platforms: :ruby
|
2010-07-25 22:31:45 +00:00
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# Active Job.
|
2014-08-20 02:21:39 +00:00
|
|
|
group :job do
|
2016-09-14 00:19:09 +00:00
|
|
|
gem "resque", github: "resque/resque", require: false
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "resque-scheduler", require: false
|
|
|
|
gem "sidekiq", require: false
|
|
|
|
gem "sucker_punch", require: false
|
2016-09-14 00:19:09 +00:00
|
|
|
gem "delayed_job", require: false, github: "collectiveidea/delayed_job"
|
|
|
|
gem "queue_classic", github: "QueueClassic/queue_classic", branch: "master", require: false, platforms: :ruby
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "sneakers", require: false
|
|
|
|
gem "que", require: false
|
|
|
|
gem "backburner", require: false
|
2016-05-10 04:07:09 +00:00
|
|
|
#TODO: add qu after it support Rails 5.1
|
|
|
|
# gem 'qu-rails', github: "bkeepers/qu", branch: "master", require: false
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "qu-redis", require: false
|
2016-09-14 00:19:09 +00:00
|
|
|
gem "delayed_job_active_record", require: false, github: "collectiveidea/delayed_job_active_record"
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "sequel", require: false
|
2014-08-20 02:21:39 +00:00
|
|
|
end
|
2014-08-12 09:29:21 +00:00
|
|
|
|
2015-12-14 15:38:37 +00:00
|
|
|
# Action Cable
|
|
|
|
group :cable do
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "puma", require: false
|
2016-01-24 10:43:40 +00:00
|
|
|
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "em-hiredis", require: false
|
|
|
|
gem "hiredis", require: false
|
|
|
|
gem "redis", require: false
|
2016-01-24 17:25:53 +00:00
|
|
|
|
2016-10-06 01:11:18 +00:00
|
|
|
gem "websocket-client-simple", github: "matthewd/websocket-client-simple", branch: "close-race", require: false
|
2016-05-31 14:44:09 +00:00
|
|
|
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "blade", require: false, platforms: [:ruby]
|
|
|
|
gem "blade-sauce_labs_plugin", require: false, platforms: [:ruby]
|
2015-12-14 15:38:37 +00:00
|
|
|
end
|
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# Add your own local bundler stuff.
|
2012-01-02 13:08:37 +00:00
|
|
|
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
|
2013-11-01 09:39:06 +00:00
|
|
|
instance_eval File.read local_gemfile if File.exist? local_gemfile
|
2010-11-05 21:11:58 +00:00
|
|
|
|
2013-03-11 18:48:30 +00:00
|
|
|
group :test do
|
2015-10-12 11:48:04 +00:00
|
|
|
# FIX: Our test suite isn't ready to run in random order yet.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "minitest", "< 5.3.4"
|
2014-05-16 16:18:21 +00:00
|
|
|
|
2015-04-01 20:09:58 +00:00
|
|
|
platforms :mri do
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "stackprof"
|
|
|
|
gem "byebug"
|
2014-11-17 14:39:32 +00:00
|
|
|
end
|
|
|
|
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "benchmark-ips"
|
2011-07-22 12:55:48 +00:00
|
|
|
end
|
|
|
|
|
2015-12-16 16:31:44 +00:00
|
|
|
platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "nokogiri", ">= 1.6.8"
|
2011-05-05 17:47:07 +00:00
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# Needed for compiling the ActionDispatch::Journey parser.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "racc", ">=1.4.6", require: false
|
2013-02-26 05:10:03 +00:00
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# Active Record.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "sqlite3", "~> 1.3.6"
|
2010-05-19 20:38:27 +00:00
|
|
|
|
|
|
|
group :db do
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "pg", ">= 0.18.0"
|
|
|
|
gem "mysql2", ">= 0.4.4"
|
2010-05-19 20:38:27 +00:00
|
|
|
end
|
2010-07-25 22:31:45 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
2016-08-06 17:23:19 +00:00
|
|
|
if ENV["AR_JDBC"]
|
2016-09-14 00:19:09 +00:00
|
|
|
gem "activerecord-jdbcsqlite3-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
2013-09-03 06:33:00 +00:00
|
|
|
group :db do
|
2016-09-14 00:19:09 +00:00
|
|
|
gem "activerecord-jdbcmysql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
|
|
|
gem "activerecord-jdbcpostgresql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
|
2013-09-03 06:33:00 +00:00
|
|
|
end
|
|
|
|
else
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0"
|
2013-09-03 06:33:00 +00:00
|
|
|
group :db do
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "activerecord-jdbcmysql-adapter", ">= 1.3.0"
|
|
|
|
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.0"
|
2013-09-03 06:33:00 +00:00
|
|
|
end
|
2013-08-20 18:31:43 +00:00
|
|
|
end
|
2010-01-01 02:49:27 +00:00
|
|
|
end
|
2010-08-16 20:58:17 +00:00
|
|
|
|
2014-07-23 17:24:16 +00:00
|
|
|
platforms :rbx do
|
2015-10-12 11:48:04 +00:00
|
|
|
# The rubysl-yaml gem doesn't ship with Psych by default as it needs
|
|
|
|
# libyaml that isn't always available.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "psych", "~> 2.0"
|
2014-07-23 17:24:16 +00:00
|
|
|
end
|
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# Gems that are necessary for Active Record tests with Oracle.
|
2016-08-06 17:23:19 +00:00
|
|
|
if ENV["ORACLE_ENHANCED"]
|
2010-08-16 20:58:17 +00:00
|
|
|
platforms :ruby do
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "ruby-oci8", "~> 2.2"
|
2010-08-16 20:58:17 +00:00
|
|
|
end
|
2016-09-14 00:19:09 +00:00
|
|
|
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
|
2010-08-16 20:58:17 +00:00
|
|
|
end
|
2011-10-03 02:51:01 +00:00
|
|
|
|
2015-10-12 11:48:04 +00:00
|
|
|
# A gem necessary for Active Record tests with IBM DB.
|
2016-08-06 17:23:19 +00:00
|
|
|
gem "ibm_db" if ENV["IBM_DB"]
|
|
|
|
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
|
|
gem "wdm", ">= 0.1.0", platforms: [:mingw, :mswin, :x64_mingw, :mswin64]
|