chargebee 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/chargebee.gemspec +2 -2
- data/lib/chargebee.rb +1 -1
- data/lib/chargebee/models/card.rb +2 -1
- data/lib/chargebee/models/invoice.rb +1 -1
- metadata +2 -2
data/chargebee.gemspec
CHANGED
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
5
5
|
|
6
6
|
s.name = 'chargebee'
|
7
|
-
s.version = '1.0.
|
8
|
-
s.date = '2012-
|
7
|
+
s.version = '1.0.6'
|
8
|
+
s.date = '2012-07-02'
|
9
9
|
|
10
10
|
s.summary = "Ruby client for Chargebee API."
|
11
11
|
s.description = "Subscription Billing - Simple. Secure. Affordable. More details at www.chargebee.com."
|
data/lib/chargebee.rb
CHANGED
@@ -2,7 +2,8 @@ module ChargeBee
|
|
2
2
|
class Card < Model
|
3
3
|
|
4
4
|
attr_accessor :customer_id, :status, :gateway, :first_name, :last_name, :iin, :last4, :card_type,
|
5
|
-
:expiry_month, :expiry_year, :
|
5
|
+
:expiry_month, :expiry_year, :billing_addr1, :billing_addr2, :billing_city, :billing_state,
|
6
|
+
:billing_country, :billing_zip, :masked_number
|
6
7
|
|
7
8
|
# OPERATIONS
|
8
9
|
#-----------
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: chargebee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 1.0.
|
5
|
+
version: 1.0.6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Rajaraman S
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2012-
|
14
|
+
date: 2012-07-02 00:00:00 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: json_pure
|