Sha256: bec74ec80035fb32e46ab198141cfdd18a3217f01e881318bd1cd1a17822a6ff

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

require 'universal_ruby_whois'
require 'money'

module ActiveSupport
  module CoreExtensions
    module Hash
      module Conversions
        unless method_defined? :old_to_xml
          alias_method :old_to_xml, :to_xml
          def to_xml(options = {})
            options.merge!(:dasherize => false)
            old_to_xml(options)
          end
        end
      end
    end

    module Array
      module Conversions
        unless method_defined? :old_to_xml
          alias_method :old_to_xml, :to_xml
          def to_xml(options = {})
            options.merge!(:dasherize => false)
            old_to_xml(options)
          end
        end
      end
    end
  end
end
module ActiveRecord 
  module Serialization
    unless method_defined? :old_to_xml
      alias_method :old_to_xml, :to_xml
      def to_xml(options = {})
        options.merge!(:dasherize => false)
        old_to_xml(options)
      end
    end
  end
end

class ApplicationController < ActionController::Base
  
  include AuthenticatedSystem
  
  helper :all
  
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
smukherjee-openbill-0.1.5 app/controllers/application.rb
smukherjee-openbill-0.1.6 app/controllers/application.rb
openbill-0.1.6 app/controllers/application.rb
openbill-0.1.5 app/controllers/application.rb