Skip to content

Instantly share code, notes, and snippets.

@jswanner
Created October 7, 2011 19:30
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jswanner/1271163 to your computer and use it in GitHub Desktop.
Save jswanner/1271163 to your computer and use it in GitHub Desktop.
Differences between Rails 3.1.0 & Rails 3.1.1 generated apps
diff -U 0 -r rails-3.1.0/Gemfile rails-3.1.1/Gemfile
--- rails-3.1.0/Gemfile 2011-10-07 12:07:06.000000000 -0400
+++ rails-3.1.1/Gemfile 2011-10-07 12:59:13.000000000 -0400
@@ -3 +3 @@
-gem 'rails', '3.1.0'
+gem 'rails', '3.1.1'
@@ -14,3 +14,3 @@
- gem 'sass-rails', " ~> 3.1.0"
- gem 'coffee-rails', "~> 3.1.0"
- gem 'uglifier'
+ gem 'sass-rails', '~> 3.1.4'
+ gem 'coffee-rails', '~> 3.1.1'
+ gem 'uglifier', '>= 1.0.3'
@@ -20,0 +21,3 @@
+# To use ActiveModel has_secure_password
+# gem 'bcrypt-ruby', '~> 3.0.0'
diff -U 0 -r rails-3.1.0/config/environments/test.rb rails-3.1.1/config/environments/test.rb
--- rails-3.1.0/config/environments/test.rb 2011-10-07 12:07:06.000000000 -0400
+++ rails-3.1.1/config/environments/test.rb 2011-10-07 12:59:13.000000000 -0400
@@ -39,3 +38,0 @@
-
- # Allow pass debug_assets=true as a query parameter to load pages with unpackaged assets
- config.assets.allow_debugging = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment