Skip to content

Commit

Permalink
fix base64 requires
Browse files Browse the repository at this point in the history
  • Loading branch information
lest committed Jan 2, 2012
1 parent 7bdfbac commit 4f440a3
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 4f440a3

Please sign in to comment.