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
|
|
|
|
|
2012-11-13 18:49:18 +08:00
|
|
|
gem 'mocha', '~> 0.13.0', require: false
|
2012-10-14 02:22:51 +08:00
|
|
|
gem 'rack-cache', '~> 1.2'
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'bcrypt-ruby', '~> 3.0.0'
|
2013-04-02 10:59:52 +08:00
|
|
|
gem 'jquery-rails', '~> 2.2.0'
|
2012-10-05 21:35:03 +08:00
|
|
|
gem 'turbolinks'
|
2013-02-26 05:39:25 +08:00
|
|
|
gem 'coffee-rails', '~> 4.0.0.beta1'
|
2011-09-09 01:51:23 +08:00
|
|
|
|
2011-07-07 08:38:54 +08:00
|
|
|
# This needs to be with require false to avoid
|
|
|
|
# it being automatically loaded by sprockets
|
2012-09-11 16:39:22 +08:00
|
|
|
gem 'uglifier', require: false
|
2012-09-19 23:43:40 +08:00
|
|
|
|
2011-01-13 04:15:57 +08:00
|
|
|
group :doc do
|
2013-04-02 21:28:19 +08:00
|
|
|
gem 'sdoc'
|
2012-10-26 07:02:48 +08:00
|
|
|
gem 'redcarpet', '~> 2.2.2', platforms: :ruby
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'w3c_validators'
|
2012-12-23 05:43:10 +08:00
|
|
|
gem 'kindlerb'
|
2011-01-13 04:15:57 +08:00
|
|
|
end
|
2009-11-11 06:59:22 +08:00
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
# AS
|
2012-09-07 06:45:51 +08:00
|
|
|
gem 'dalli', '>= 2.2.1'
|
2010-07-26 06:31:45 +08:00
|
|
|
|
2011-11-18 06:41:53 +08:00
|
|
|
# Add your own local bundler stuff
|
2012-01-02 21:08:37 +08:00
|
|
|
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
|
|
|
|
instance_eval File.read local_gemfile if File.exists? local_gemfile
|
2010-11-06 05:11:58 +08:00
|
|
|
|
2013-03-12 02:48:30 +08:00
|
|
|
group :test do
|
|
|
|
platforms :mri_19 do
|
|
|
|
gem 'ruby-prof', '~> 0.11.2'
|
|
|
|
end
|
|
|
|
|
|
|
|
platforms :mri_19, :mri_20 do
|
2013-03-12 02:50:31 +08:00
|
|
|
gem 'debugger'
|
2011-07-22 20:55:48 +08:00
|
|
|
end
|
2013-03-12 02:49:05 +08:00
|
|
|
|
|
|
|
gem 'benchmark-ips'
|
2011-07-22 20:55:48 +08:00
|
|
|
end
|
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
platforms :ruby do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'yajl-ruby'
|
|
|
|
gem 'nokogiri', '>= 1.4.5'
|
2011-05-06 01:47:07 +08:00
|
|
|
|
2013-02-26 13:10:03 +08:00
|
|
|
# Needed for compiling the ActionDispatch::Journey parser
|
|
|
|
gem 'racc', '>=1.4.6', require: false
|
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
# AR
|
2012-05-16 11:25:30 +08:00
|
|
|
gem 'sqlite3', '~> 1.3.6'
|
2010-05-20 04:38:27 +08:00
|
|
|
|
|
|
|
group :db do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'pg', '>= 0.11.0'
|
2012-11-18 08:48:22 +08:00
|
|
|
gem 'mysql', '>= 2.9.0'
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'mysql2', '>= 0.3.10'
|
2010-05-20 04:38:27 +08:00
|
|
|
end
|
2010-07-26 06:31:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'json'
|
2013-03-08 20:41:21 +08:00
|
|
|
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.7'
|
2010-01-01 10:49:27 +08:00
|
|
|
|
2010-10-07 23:49:40 +08:00
|
|
|
# This is needed by now to let tests work on JRuby
|
|
|
|
# TODO: When the JRuby guys merge jruby-openssl in
|
|
|
|
# jruby this will be removed
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'jruby-openssl'
|
2010-10-07 01:45:48 +08:00
|
|
|
|
2010-05-20 04:38:27 +08:00
|
|
|
group :db do
|
2013-03-08 20:41:21 +08:00
|
|
|
gem 'activerecord-jdbcmysql-adapter', '>= 1.2.7'
|
|
|
|
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.7'
|
2010-05-20 04:38:27 +08:00
|
|
|
end
|
2010-01-01 10:49:27 +08:00
|
|
|
end
|
2010-08-17 04:58:17 +08:00
|
|
|
|
|
|
|
# gems that are necessary for ActiveRecord tests with Oracle database
|
2012-09-21 01:13:24 +08:00
|
|
|
if ENV['ORACLE_ENHANCED']
|
2010-08-17 04:58:17 +08:00
|
|
|
platforms :ruby do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'ruby-oci8', '>= 2.0.4'
|
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
|
|
|
|
2011-10-03 23:56:11 +08:00
|
|
|
# A gem necessary for ActiveRecord tests with IBM DB
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'ibm_db' if ENV['IBM_DB']
|