aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/securerandom.rb
Commit message (Collapse)AuthorAgeFilesLines
* Replace `#=>` with `# =>` [ci skip]amitkumarsuroliya2015-09-191-2/+2
| | | | @rafaelfranca suggested in https://github.com/rails/rails/commit/f7c7bcd9c2a8b0e8c2840295d001d2d4dfd4cfae that code examples should display the result after `# =>` and not after `#=>`.
* Add missing requireGuillermo Iguaran2015-01-091-0/+2
|
* Add SecureRandom.base58Guillermo Iguaran2015-01-091-0/+21
|
* Move uuid_v5 and uuid_v3 to Digest::UUIDRafael Mendonça França2014-07-151-47/+0
| | | | | These methods are not random so they should not belings to SecureRandom module.
* :nodoc: our SecureRandom patches [ci skip]Godfrey Chan2014-06-261-4/+4
| | | | | | | These methods shouldn't be added to `SecureRandom`, as they are neither secure nor random. The more appropriate place for this seems to be `Digest`, so we should move them there. (Pull request welcomed!) Marking this `:nodoc:` for now, so we don't accidentally ship it as public API. See https://github.com/rails/rails/pull/15306/files#r13055862 for details.
* Auto-generate stable fixture UUIDs on PostgreSQL.Roderick van Domburg2014-01-071-0/+47
Fixes: #11524