aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/Gemfile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-01-19 23:12:05 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-01-19 23:13:19 +0530
commit6e311b93adf295b97a1ad6056675d32ff51b212f (patch)
treee8557448cea8be6354cff5eeefb5972d86b65545 /railties/guides/code/getting_started/Gemfile
parent4c5b73fef8a41bd2bd8435fa4b00f7c40b721650 (diff)
downloadrails-6e311b93adf295b97a1ad6056675d32ff51b212f.tar.gz
rails-6e311b93adf295b97a1ad6056675d32ff51b212f.tar.bz2
rails-6e311b93adf295b97a1ad6056675d32ff51b212f.zip
update the getting_started guide code [ci skip]
Diffstat (limited to 'railties/guides/code/getting_started/Gemfile')
-rw-r--r--railties/guides/code/getting_started/Gemfile23
1 files changed, 17 insertions, 6 deletions
diff --git a/railties/guides/code/getting_started/Gemfile b/railties/guides/code/getting_started/Gemfile
index 898510dcaa..768985070c 100644
--- a/railties/guides/code/getting_started/Gemfile
+++ b/railties/guides/code/getting_started/Gemfile
@@ -1,8 +1,9 @@
-source 'http://rubygems.org'
+source 'https://rubygems.org'
+
+gem 'rails', '3.2.0'
-gem 'rails', '3.1.0'
# Bundle edge Rails instead:
-# gem 'rails', :git => 'git://github.com/rails/rails.git'
+# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
@@ -10,13 +11,23 @@ gem 'sqlite3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
- gem 'sass-rails', " ~> 3.1.0"
- gem 'coffee-rails', "~> 3.1.0"
- gem 'uglifier'
+ gem 'sass-rails', '~> 3.2.3'
+ gem 'coffee-rails', '~> 3.2.1'
+
+ # See https://github.com/sstephenson/execjs#readme for more supported runtimes
+ # gem 'therubyracer'
+
+ gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
+# To use ActiveModel has_secure_password
+# gem 'bcrypt-ruby', '~> 3.0.0'
+
+# To use Jbuilder templates for JSON
+# gem 'jbuilder'
+
# Use unicorn as the web server
# gem 'unicorn'