aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/base64/encoding.rb
blob: 1a40da8785028cc51e9efe98bab7e73b9ec7ef23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Base64 #:nodoc:
      module Encoding
        # Encodes the value as base64 without the newline breaks. This makes the base64 encoding readily usable as URL parameters 
        # or memcache keys without further processing.
        def encode64s(value)
          encode64(value).gsub(/\n/, '')
        end
      end
    end
  end
end