comparison Gemfile @ 194:442c3ad459a7

Welcome to rails 4
author Edho Arief <edho@myconan.net>
date Tue, 07 May 2013 23:56:27 +0900
parents 1da19a81f5d7
children aab527b5ccdc 1889f3155797
comparison
equal deleted inserted replaced
193:d09bdb5904f5 194:442c3ad459a7
1 source 'https://rubygems.org' 1 source 'https://rubygems.org'
2 2
3 gem 'rails', '~> 3.2.13' 3 gem 'rails', '~> 4.0.0.rc1'
4 gem 'jquery-rails' 4 gem 'jquery-rails'
5 5
6 # Bundle edge Rails instead: 6 # Bundle edge Rails instead:
7 # gem 'rails', :git => 'git://github.com/rails/rails.git' 7 # gem 'rails', :git => 'git://github.com/rails/rails.git'
8 8
9 gem 'mysql2', :platforms => :ruby 9 gem 'mysql2', platforms: :ruby
10 gem 'activerecord-jdbcmysql-adapter', :platforms => :jruby 10 gem 'activerecord-jdbcmysql-adapter', platforms: :jruby
11 gem 'jruby-openssl', :platforms => :jruby 11 gem 'jruby-openssl', platforms: :jruby
12 gem 'actionpack-page_caching'
12 13
13 # Gems used only for assets and not required 14 # Gems used only for assets and not required
14 # in production environments by default. 15 # in production environments by default.
15 group :assets do 16 group :assets do
16 gem 'sass-rails', '~> 3.2.3' 17 gem 'sass-rails', '~> 4.0.0.rc1'
17 18
18 gem 'uglifier', '>= 1.0.3' 19 gem 'uglifier'
19 gem 'anjlab-bootstrap-rails', '>= 2.0', :require => 'bootstrap-rails' 20 gem 'anjlab-bootstrap-rails', require: 'bootstrap-rails'
20 21
21 gem 'therubyrhino', :platforms => :jruby 22 gem 'therubyrhino', platforms: :jruby
22 end 23 end
23 24
24 # To use ActiveModel has_secure_password 25 # To use ActiveModel has_secure_password
25 # gem 'bcrypt-ruby', '~> 3.0.0' 26 # gem 'bcrypt-ruby', '~> 3.0.0'
26 27
27 # To use Jbuilder templates for JSON 28 # To use Jbuilder templates for JSON
28 # gem 'jbuilder' 29 # gem 'jbuilder'
29 30
30 group :standalone do 31 group :standalone do
31 # Use unicorn as the app server 32 # Use unicorn as the app server
32 gem 'unicorn', :platforms => :mri 33 gem 'unicorn', platforms: :mri
33 gem 'puma', :platforms => [:rbx, :jruby] 34 gem 'puma', platforms: [:rbx, :jruby]
34 end 35 end
35 36
36 # Deploy with Capistrano 37 # Deploy with Capistrano
37 # gem 'capistrano' 38 # gem 'capistrano'
38 39