Mercurial > zeropaste
annotate Gemfile @ 83:ae360c3b0bb0
Disable explain when using jruby because it's not supported.
The patch for this support exist but for some reason still not included
in latest release of the jdbc adapter.
Reference: https://github.com/jruby/activerecord-jdbc-adapter/pull/206
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 15 Oct 2012 03:45:18 -0700 |
parents | b1de54c37b70 |
children | a9b68e36302e |
rev | line source |
---|---|
0 | 1 source 'https://rubygems.org' |
2 | |
3 gem 'rails', '3.2.8' | |
80 | 4 gem 'jruby-openssl', :platforms => :jruby |
38 | 5 gem 'jquery-rails' |
0 | 6 |
7 # Bundle edge Rails instead: | |
8 # gem 'rails', :git => 'git://github.com/rails/rails.git' | |
9 | |
80 | 10 gem 'mysql2', :platforms => :ruby |
11 gem 'activerecord-jdbcmysql-adapter', :platforms => :jruby | |
0 | 12 |
13 gem 'json' | |
14 | |
15 # Gems used only for assets and not required | |
16 # in production environments by default. | |
17 group :assets do | |
18 gem 'sass-rails', '~> 3.2.3' | |
19 | |
20 gem 'uglifier', '>= 1.0.3' | |
21 end | |
22 | |
23 | |
24 | |
25 # To use ActiveModel has_secure_password | |
26 # gem 'bcrypt-ruby', '~> 3.0.0' | |
27 | |
28 # To use Jbuilder templates for JSON | |
29 # gem 'jbuilder' | |
30 | |
31 # Use unicorn as the app server | |
17
8c0f70f8249e
Added webservers - puma and unicorn.
Edho Arief <edho@myconan.net>
parents:
1
diff
changeset
|
32 gem 'unicorn', :platforms => :mri |
8c0f70f8249e
Added webservers - puma and unicorn.
Edho Arief <edho@myconan.net>
parents:
1
diff
changeset
|
33 gem 'puma', :platforms => [:rbx, :jruby] |
0 | 34 |
35 # Deploy with Capistrano | |
36 # gem 'capistrano' | |
37 | |
38 # To use debugger | |
39 # gem 'ruby-debug' | |
57 | 40 |
41 gem 'newrelic_rpm' |