Mercurial > zeropaste
annotate Gemfile @ 80:b1de54c37b70
Added support for jruby.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 15 Oct 2012 03:32:06 -0700 |
parents | 85e9dc5df11c |
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' |