Skip to content

Commit

Permalink
Merge pull request rails#4268 from lest/3-2-deprecate-activesupport-b…
Browse files Browse the repository at this point in the history
…ase64

fix base64 requires
  • Loading branch information
fxn committed Jan 2, 2012
2 parents 7bdfbac + 4f440a3 commit e369c4e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
@@ -1,4 +1,4 @@
require 'base64'
require 'active_support/base64'
require 'active_support/core_ext/object/blank'

module ActionController
Expand Down
1 change: 1 addition & 0 deletions activeresource/test/cases/authorization_test.rb
@@ -1,4 +1,5 @@
require 'abstract_unit'
require 'active_support/base64'

class AuthorizationTest < Test::Unit::TestCase
Response = Struct.new(:code)
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/message_encryptor.rb
@@ -1,5 +1,5 @@
require 'openssl'
require 'base64'
require 'active_support/base64'

module ActiveSupport
# MessageEncryptor is a simple way to encrypt values which get stored somewhere
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/message_verifier.rb
@@ -1,4 +1,4 @@
require 'base64'
require 'active_support/base64'
require 'active_support/core_ext/object/blank'

module ActiveSupport
Expand Down
1 change: 1 addition & 0 deletions activesupport/lib/active_support/xml_mini.rb
@@ -1,4 +1,5 @@
require 'time'
require 'active_support/base64'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/string/inflections'

Expand Down

0 comments on commit e369c4e

Please sign in to comment.