Mercurial > zeropaste
annotate Gemfile @ 244:1889f3155797
assets group is no more.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Fri, 09 Aug 2013 08:42:01 +0000 |
parents | 442c3ad459a7 |
children | 8ab17063419f |
rev | line source |
---|---|
0 | 1 source 'https://rubygems.org' |
2 | |
194 | 3 gem 'rails', '~> 4.0.0.rc1' |
38 | 4 gem 'jquery-rails' |
0 | 5 |
6 # Bundle edge Rails instead: | |
7 # gem 'rails', :git => 'git://github.com/rails/rails.git' | |
8 | |
194 | 9 gem 'mysql2', platforms: :ruby |
10 gem 'activerecord-jdbcmysql-adapter', platforms: :jruby | |
11 gem 'jruby-openssl', platforms: :jruby | |
12 gem 'actionpack-page_caching' | |
0 | 13 |
244 | 14 gem 'sass-rails', '~> 4.0.0.rc1' |
0 | 15 |
244 | 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:
159
diff
changeset
|
18 |
244 | 19 gem 'therubyrhino', platforms: :jruby |
0 | 20 |
21 # To use ActiveModel has_secure_password | |
22 # gem 'bcrypt-ruby', '~> 3.0.0' | |
23 | |
24 # To use Jbuilder templates for JSON | |
25 # gem 'jbuilder' | |
26 | |
147
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
27 group :standalone do |
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
28 # Use unicorn as the app server |
194 | 29 gem 'unicorn', platforms: :mri |
30 gem 'puma', platforms: [:rbx, :jruby] | |
147
812711965af1
Added support for disabling supported web server without changing Gemfile.
Edho Arief <edho@myconan.net>
parents:
99
diff
changeset
|
31 end |
0 | 32 |
33 # Deploy with Capistrano | |
34 # gem 'capistrano' | |
35 | |
36 # To use debugger | |
37 # gem 'ruby-debug' | |
57 | 38 |
156
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
39 group :newrelic do |
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
40 gem 'newrelic_rpm' |
d7b64b639d15
Disable newrelic by default (configurable).
Edho Arief <edho@myconan.net>
parents:
147
diff
changeset
|
41 end |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
42 |
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
43 group :development do |
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
44 gem 'quiet_assets' |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
185
diff
changeset
|
45 gem 'puma' |
178
e4a0ef308a99
Added quiet_assets for development environment.
Edho Arief <edho@myconan.net>
parents:
172
diff
changeset
|
46 end |