whoops, respond_to? cannot be protected

This commit is contained in:
Andrew Thorp 2014-01-24 23:37:09 -08:00
parent 45fe0c2591
commit 7275b9b951

View File

@ -102,6 +102,13 @@ module Stripe
@values.each(&blk)
end
def marshal_dump
@values
end
def marshal_load(values)
@values = values
if RUBY_VERSION < '1.9.2'
def respond_to?(symbol)
@values.has_key?(symbol) || super