aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBurkhard Vogel-Kreykenbohm <b.vogel@buddyandselly.com>2013-07-17 11:49:47 +0200
committerBurkhard Vogel-Kreykenbohm <b.vogel@buddyandselly.com>2013-07-17 16:39:07 +0200
commitad62cf68f89506b0a5074fec8e08d104865aa0ee (patch)
treec45ce8698a18c6727e9e02381364f4859e6a0641
parent74722d66d332d1d768459d8b510cc082fe3d5618 (diff)
downloadrails-ad62cf68f89506b0a5074fec8e08d104865aa0ee.tar.gz
rails-ad62cf68f89506b0a5074fec8e08d104865aa0ee.tar.bz2
rails-ad62cf68f89506b0a5074fec8e08d104865aa0ee.zip
bcrypt-ruby stable is 3.1
-rw-r--r--Gemfile2
-rw-r--r--activemodel/lib/active_model/secure_password.rb6
-rw-r--r--guides/code/getting_started/Gemfile2
-rw-r--r--railties/lib/rails/generators/rails/app/templates/Gemfile2
4 files changed, 6 insertions, 6 deletions
diff --git a/Gemfile b/Gemfile
index 748d287b20..d40e36360d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,7 +8,7 @@ gemspec
gem 'mocha', '~> 0.14', require: false
gem 'rack-cache', '~> 1.2'
-gem 'bcrypt-ruby', '~> 3.0.0'
+gem 'bcrypt-ruby', '~> 3.1.0'
gem 'jquery-rails', '~> 2.2.0'
gem 'turbolinks'
gem 'coffee-rails', '~> 4.0.0'
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb
index 7156f1bb30..3d6de33e1e 100644
--- a/activemodel/lib/active_model/secure_password.rb
+++ b/activemodel/lib/active_model/secure_password.rb
@@ -18,9 +18,9 @@ module ActiveModel
# value to the password_confirmation attribute and the validation
# will not be triggered.
#
- # You need to add bcrypt-ruby (~> 3.0.0) to Gemfile to use #has_secure_password:
+ # You need to add bcrypt-ruby (~> 3.1.0) to Gemfile to use #has_secure_password:
#
- # gem 'bcrypt-ruby', '~> 3.0.0'
+ # gem 'bcrypt-ruby', '~> 3.1.0'
#
# Example using Active Record (which automatically includes ActiveModel::SecurePassword):
#
@@ -44,7 +44,7 @@ module ActiveModel
# This is to avoid ActiveModel (and by extension the entire framework)
# being dependent on a binary library.
begin
- gem 'bcrypt-ruby', '~> 3.0.0'
+ gem 'bcrypt-ruby', '~> 3.1.0'
require 'bcrypt'
rescue LoadError
$stderr.puts "You don't have bcrypt-ruby installed in your application. Please add it to your Gemfile and run bundle install"
diff --git a/guides/code/getting_started/Gemfile b/guides/code/getting_started/Gemfile
index acd2ed5160..3d57012901 100644
--- a/guides/code/getting_started/Gemfile
+++ b/guides/code/getting_started/Gemfile
@@ -31,7 +31,7 @@ end
gem 'jbuilder', '~> 1.2'
# To use ActiveModel has_secure_password
-# gem 'bcrypt-ruby', '~> 3.0.0'
+# gem 'bcrypt-ruby', '~> 3.1.0'
# Use unicorn as the app server
# gem 'unicorn'
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile
index 577ff651e5..adc83353b4 100644
--- a/railties/lib/rails/generators/rails/app/templates/Gemfile
+++ b/railties/lib/rails/generators/rails/app/templates/Gemfile
@@ -16,7 +16,7 @@ group :doc do
end
# Use ActiveModel has_secure_password
-# gem 'bcrypt-ruby', '~> 3.0.0'
+# gem 'bcrypt-ruby', '~> 3.1.0'
# Use unicorn as the app server
# gem 'unicorn'