mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
Merge pull request #17 from briancollins/master
Fix StripeObject#inspect when ActiveSupport 3.0 is loaded
This commit is contained in:
commit
c6847c2ad2
@ -214,6 +214,7 @@ module Stripe
|
||||
def keys; @values.keys; end
|
||||
def values; @values.values; end
|
||||
def to_json(*a); @values.to_json(*a); end
|
||||
def as_json(opts=nil); @values.as_json(opts); end
|
||||
def to_hash; @values; end
|
||||
def each(&blk); @values.each(&blk); end
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
module Stripe
|
||||
VERSION = '1.6.0'
|
||||
VERSION = '1.6.1'
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user