Mercurial > zeropaste
annotate Gemfile @ 114:b72f99d7b8cf
Dynamic url based on options selected.
Yes, I'm having too much fun.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 12 Nov 2012 13:31:18 +0700 |
parents | e0e99705e79d |
children | 812711965af1 |
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 | |
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' |