1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Explicitly require AS::Deprecation for the SecretKeyGenerator. Bring in ActiveSupport::TestCase for its tests.

This commit is contained in:
Jeremy Kemper 2008-11-24 22:39:11 -08:00
parent cb49681710
commit ce50ca1baf
2 changed files with 3 additions and 1 deletions

View file

@ -1,3 +1,5 @@
require 'active_support/deprecation'
module Rails
# A class for creating random secret keys. This class will do its best to create a
# random secret key that's as secure as possible, using whatever methods are

View file

@ -1,4 +1,4 @@
require 'test/unit'
require 'abstract_unit'
# Must set before requiring generator libs.
if defined?(RAILS_ROOT)