diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-05-23 19:45:49 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-05-23 20:25:44 +0100 |
commit | 1170cceaaec8c0c8aef173913405be1456e4b2be (patch) | |
tree | 226e6eb1294b6490a9842d604330a948951e2135 /activesupport/lib | |
parent | d411c85a65baaf4ed268b1b1bb4df408cee4981a (diff) | |
download | rails-1170cceaaec8c0c8aef173913405be1456e4b2be.tar.gz rails-1170cceaaec8c0c8aef173913405be1456e4b2be.tar.bz2 rails-1170cceaaec8c0c8aef173913405be1456e4b2be.zip |
Removed ActiveSupport::SecureRandom in favour of SecureRandom from the standard library. (It has been deprecated in the 3-1-stable branch.)
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/notifications/instrumenter.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/secure_random.rb | 6 |
3 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/lib/active_support.rb b/activesupport/lib/active_support.rb index 63830d721a..cc9ea5cffa 100644 --- a/activesupport/lib/active_support.rb +++ b/activesupport/lib/active_support.rb @@ -70,7 +70,6 @@ module ActiveSupport autoload :OrderedHash autoload :OrderedOptions autoload :Rescuable - autoload :SecureRandom autoload :StringInquirer autoload :XmlMini end diff --git a/activesupport/lib/active_support/notifications/instrumenter.rb b/activesupport/lib/active_support/notifications/instrumenter.rb index 441fefb491..3941c285a2 100644 --- a/activesupport/lib/active_support/notifications/instrumenter.rb +++ b/activesupport/lib/active_support/notifications/instrumenter.rb @@ -1,4 +1,3 @@ -require 'active_support/secure_random' require 'active_support/core_ext/module/delegation' module ActiveSupport diff --git a/activesupport/lib/active_support/secure_random.rb b/activesupport/lib/active_support/secure_random.rb deleted file mode 100644 index 52f8c72b77..0000000000 --- a/activesupport/lib/active_support/secure_random.rb +++ /dev/null @@ -1,6 +0,0 @@ -require 'securerandom' - -module ActiveSupport - # Use Ruby's SecureRandom library. - SecureRandom = ::SecureRandom # :nodoc: -end |