Gemfile 1.8 KB
Newer Older
1
source 'https://rubygems.org'
2

3 4
gemspec

5
gem 'mocha', '~> 0.13.0', require: false
6
gem 'rack-cache', '~> 1.2'
7
gem 'bcrypt-ruby', '~> 3.0.0'
8
gem 'jquery-rails', '~> 2.2.0'
9
gem 'turbolinks'
10
gem 'coffee-rails', '~> 4.0.0.beta1'
11

J
José Valim 已提交
12 13
# This needs to be with require false to avoid
# it being automatically loaded by sprockets
14
gem 'uglifier', require: false
15

16
group :doc do
X
Xavier Noria 已提交
17
  gem 'sdoc',  github: 'voloko/sdoc'
V
Vinny Diehl 已提交
18
  gem 'redcarpet', '~> 2.2.2', platforms: :ruby
19
  gem 'w3c_validators'
20
  gem 'kindlerb'
21
end
22

23
# AS
24
gem 'dalli', '>= 2.2.1'
25

26
# Add your own local bundler stuff
B
Bogdan Gusiev 已提交
27 28
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
instance_eval File.read local_gemfile if File.exists? local_gemfile
29

30 31 32 33 34 35 36
group :test do
  platforms :mri_19 do
    gem 'ruby-prof', '~> 0.11.2'
  end

  platforms :mri_19, :mri_20 do
    gem 'debugger' if !ENV['TRAVIS']
37 38 39
  end
end

40
platforms :ruby do
41 42
  gem 'yajl-ruby'
  gem 'nokogiri', '>= 1.4.5'
A
Arun Agrawal 已提交
43

44 45 46
  # Needed for compiling the ActionDispatch::Journey parser
  gem 'racc', '>=1.4.6', require: false

47
  # AR
O
Oscar Del Ben 已提交
48
  gem 'sqlite3', '~> 1.3.6'
49 50

  group :db do
51
    gem 'pg', '>= 0.11.0'
52
    gem 'mysql', '>= 2.9.0'
53
    gem 'mysql2', '>= 0.3.10'
54
  end
55 56 57
end

platforms :jruby do
58
  gem 'json'
59
  gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.7'
60

61 62 63
  # 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
64
  gem 'jruby-openssl'
65

66
  group :db do
67 68
    gem 'activerecord-jdbcmysql-adapter', '>= 1.2.7'
    gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.7'
69
  end
70
end
71 72

# gems that are necessary for ActiveRecord tests with Oracle database
73
if ENV['ORACLE_ENHANCED']
74
  platforms :ruby do
75
    gem 'ruby-oci8', '>= 2.0.4'
76
  end
77
  gem 'activerecord-oracle_enhanced-adapter', github: 'rsim/oracle-enhanced', branch: 'master'
78
end
79

Y
Yasuo Honda 已提交
80
# A gem necessary for ActiveRecord tests with IBM DB
81
gem 'ibm_db' if ENV['IBM_DB']
82 83

gem 'benchmark-ips'