Mercurial > zeropaste
annotate Gemfile @ 317:b33a7e73e592
Update rubocop config.
| author | edogawaconan <me@myconan.net> | 
|---|---|
| date | Sat, 05 Apr 2014 23:25:40 +0900 | 
| parents | 408c4a17e1a6 | 
| children | a8daca6e56ce | 
| rev | line source | 
|---|---|
| 269 | 1 source "https://rubygems.org" | 
| 0 | 2 | 
| 304 | 3 gem "rails", "~> 4.1.0.rc1" | 
| 269 | 4 gem "jquery-rails" | 
| 0 | 5 | 
| 6 # Bundle edge Rails instead: | |
| 269 | 7 # gem "rails", :git => "git://github.com/rails/rails.git" | 
| 0 | 8 | 
| 275 | 9 gem "pg", :platforms => :ruby | 
| 10 gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby | |
| 11 gem "jruby-openssl", :platforms => :jruby | |
| 269 | 12 gem "actionpack-page_caching" | 
| 0 | 13 | 
| 269 | 14 gem "sass-rails", "~> 4.0.0.rc1" | 
| 0 | 15 | 
| 269 | 16 gem "uglifier" | 
| 17 gem "anjlab-bootstrap-rails", :require => "bootstrap-rails" | |
| 160 
3f02431cb17d
Added therubyrhino to remove the need of node.js when using jruby.
 Edho Arief <edho@myconan.net> parents: 
159diff
changeset | 18 | 
| 275 | 19 gem "therubyrhino", :platforms => :jruby | 
| 0 | 20 | 
| 21 # To use ActiveModel has_secure_password | |
| 269 | 22 # gem "bcrypt-ruby", "~> 3.0.0" | 
| 0 | 23 | 
| 24 # To use Jbuilder templates for JSON | |
| 269 | 25 # gem "jbuilder" | 
| 0 | 26 | 
| 311 | 27 gem "unicorn", :groups => [:standalone, :development], :platforms => :mri | 
| 28 gem "hooves", :groups => :development, :platforms => :mri, :require => "hooves/default" | |
| 29 gem "puma", :groups => :standalone, :platforms => [:rbx, :jruby] | |
| 0 | 30 | 
| 31 # Deploy with Capistrano | |
| 269 | 32 # gem "capistrano" | 
| 0 | 33 | 
| 34 # To use debugger | |
| 269 | 35 # gem "ruby-debug" | 
| 57 | 36 | 
| 156 
d7b64b639d15
Disable newrelic by default (configurable).
 Edho Arief <edho@myconan.net> parents: 
147diff
changeset | 37 group :newrelic do | 
| 269 | 38 gem "newrelic_rpm" | 
| 156 
d7b64b639d15
Disable newrelic by default (configurable).
 Edho Arief <edho@myconan.net> parents: 
147diff
changeset | 39 end | 
| 178 
e4a0ef308a99
Added quiet_assets for development environment.
 Edho Arief <edho@myconan.net> parents: 
172diff
changeset | 40 | 
| 
e4a0ef308a99
Added quiet_assets for development environment.
 Edho Arief <edho@myconan.net> parents: 
172diff
changeset | 41 group :development do | 
| 269 | 42 gem "quiet_assets" | 
| 178 
e4a0ef308a99
Added quiet_assets for development environment.
 Edho Arief <edho@myconan.net> parents: 
172diff
changeset | 43 end | 
