Mercurial > zeropaste
annotate Gemfile @ 151:db5164ff73a9
Always fill in @paste.ip when creating new one.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 26 Nov 2012 21:53:12 +0700 |
parents | 812711965af1 |
children | d7b64b639d15 |
rev | line source |
---|---|
0 | 1 source 'https://rubygems.org' |
2 | |
95 | 3 gem 'rails', '3.2.9' |
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 | |
0 | 11 |
12 gem 'json' | |
13 | |
14 # Gems used only for assets and not required | |
15 # in production environments by default. | |
16 group :assets do | |
17 gem 'sass-rails', '~> 3.2.3' | |
18 | |
19 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
|
20 gem 'anjlab-bootstrap-rails', '>= 2.0', :require => 'bootstrap-rails' |
0 | 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 | |
147
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
31 group :standalone do |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
32 # 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
|
33 gem 'unicorn', :platforms => :mri |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
34 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
|
35 end |
0 | 36 |
37 # Deploy with Capistrano | |
38 # gem 'capistrano' | |
39 | |
40 # To use debugger | |
41 # gem 'ruby-debug' | |
57 | 42 |
43 gem 'newrelic_rpm' |