Mercurial > zeropaste
annotate Gemfile @ 192:1da19a81f5d7
Update rails to 3.2.13 and various other gems.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Wed, 20 Mar 2013 04:55:49 +0900 |
parents | b4b7a29b70f6 |
children | 442c3ad459a7 |
rev | line source |
---|---|
0 | 1 source 'https://rubygems.org' |
2 | |
192
1da19a81f5d7
Update rails to 3.2.13 and various other gems.
Edho Arief <edho@myconan.net>
parents:
189
diff
changeset
|
3 gem 'rails', '~> 3.2.13' |
38 | 4 gem 'jquery-rails' |
0 | 5 |
6 # Bundle edge Rails instead: | |
7 # gem 'rails', :git => 'git://github.com/rails/rails.git' | |
8 | |
80 | 9 gem 'mysql2', :platforms => :ruby |
10 gem 'activerecord-jdbcmysql-adapter', :platforms => :jruby | |
157
3886be50efde
Apparently jruby-openssl is still required.
Edho Arief <edho@myconan.net>
parents:
156
diff
changeset
|
11 gem 'jruby-openssl', :platforms => :jruby |
0 | 12 |
13 # Gems used only for assets and not required | |
14 # in production environments by default. | |
15 group :assets do | |
16 gem 'sass-rails', '~> 3.2.3' | |
17 | |
18 gem 'uglifier', '>= 1.0.3' | |
99
e0e99705e79d
Use gem for bootstrap instead of self-vendoring it.
Edho Arief <edho@myconan.net>
parents:
95
diff
changeset
|
19 gem 'anjlab-bootstrap-rails', '>= 2.0', :require => 'bootstrap-rails' |
160
3f02431cb17d
Added therubyrhino to remove the need of node.js when using jruby.
Edho Arief <edho@myconan.net>
parents:
159
diff
changeset
|
20 |
3f02431cb17d
Added therubyrhino to remove the need of node.js when using jruby.
Edho Arief <edho@myconan.net>
parents:
159
diff
changeset
|
21 gem 'therubyrhino', :platforms => :jruby |
0 | 22 end |
23 | |
24 # To use ActiveModel has_secure_password | |
25 # gem 'bcrypt-ruby', '~> 3.0.0' | |
26 | |
27 # To use Jbuilder templates for JSON | |
28 # gem 'jbuilder' | |
29 | |
147
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
30 group :standalone do |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
31 # Use unicorn as the app server |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
32 gem 'unicorn', :platforms => :mri |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
33 gem 'puma', :platforms => [:rbx, :jruby] |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
34 end |
0 | 35 |
36 # Deploy with Capistrano | |
37 # gem 'capistrano' | |
38 | |
39 # To use debugger | |
40 # gem 'ruby-debug' | |
57 | 41 |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
42 group :newrelic do |
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
43 gem 'newrelic_rpm' |
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
44 end |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
45 |
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
46 group :development do |
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
47 gem 'quiet_assets' |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
185
diff
changeset
|
48 gem 'puma' |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
49 end |