Sha256: 319cbb597abb2bbc35fdaa13465b23b210d57c041c90da920c7bcdd634fab30a

Contents?: true

Size: 1.03 KB

Versions: 170

Compression:

Stored size: 1.03 KB

Contents

begin
  require 'base64'
rescue LoadError
end

module ActiveSupport
  if defined? ::Base64
    Base64 = ::Base64
  else
    # Base64 provides utility methods for encoding and de-coding binary data 
    # using a base 64 representation. A base 64 representation of binary data
    # consists entirely of printable US-ASCII characters. The Base64 module
    # is included in Ruby 1.8, but has been removed in Ruby 1.9.
    module Base64
      # Encodes a string to its base 64 representation. Each 60 characters of
      # output is separated by a newline character.
      #
      #  ActiveSupport::Base64.encode64("Original unencoded string") 
      #  # => "T3JpZ2luYWwgdW5lbmNvZGVkIHN0cmluZw==\n"
      def self.encode64(data)
        [data].pack("m")
      end

      # Decodes a base 64 encoded string to its original representation.
      #
      #  ActiveSupport::Base64.decode64("T3JpZ2luYWwgdW5lbmNvZGVkIHN0cmluZw==") 
      #  # => "Original unencoded string"
      def self.decode64(data)
        data.unpack("m").first
      end
    end
  end
end

Version data entries

170 entries across 137 versions & 22 rubygems

Version Path
simply_stated-0.0.4 vendor/gems/ruby/1.8/gems/activesupport-2.3.5/lib/active_support/base64.rb
esod-client-0.2.1 lib/activesupport-2.2.2/lib/active_support/base64.rb
esod-client-0.2.0 lib/activesupport-2.2.2/lib/active_support/base64.rb
esod-client-0.1.1 lib/activesupport-2.2.2/lib/active_support/base64.rb
esod-client-0.1.0 lib/activesupport-2.2.2/lib/active_support/base64.rb
factorylabs-castronaut-0.7.5 vendor/activesupport/lib/active_support/base64.rb
ginst-2009.12.8 vendor/rails/activesupport/lib/active_support/base64.rb
activesupport-2.3.5 lib/active_support/base64.rb
ginst-2009.11.24 vendor/rails/activesupport/lib/active_support/base64.rb
ginst-2009.11.23 vendor/rails/activesupport/lib/active_support/base64.rb
ginst-2.0.1 vendor/rails/activesupport/lib/active_support/base64.rb
ginst-2.0.0 vendor/rails/activesupport/lib/active_support/base64.rb
gemstreamer-1.2.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/base64.rb
gemstreamer-1.1.1 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/base64.rb
gemstreamer-1.1.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/base64.rb
gemstreamer-1.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/base64.rb
gemstreamer-0.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/base64.rb
radiant-rc-0.9.0 vendor/rails/activesupport/lib/active_support/base64.rb
activeobject-0.0.4 ./lib/active_support/base64.rb
activesupport-2.2.3 lib/active_support/base64.rb