chargebee 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
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.7'
|
8
|
+
s.date = '2012-08-24'
|
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
@@ -1,7 +1,8 @@
|
|
1
1
|
module ChargeBee
|
2
2
|
class HostedPage < Model
|
3
3
|
|
4
|
-
attr_accessor :id, :type, :url, :state, :failure_reason, :pass_thru_content, :
|
4
|
+
attr_accessor :id, :type, :url, :state, :failure_reason, :pass_thru_content, :embed, :created_at,
|
5
|
+
:expires_at
|
5
6
|
|
6
7
|
class Content < Result
|
7
8
|
end
|
@@ -2,7 +2,7 @@ module ChargeBee
|
|
2
2
|
class Plan < Model
|
3
3
|
|
4
4
|
attr_accessor :id, :name, :invoice_name, :price, :period, :period_unit, :trial_period, :trial_period_unit,
|
5
|
-
:setup_cost, :status, :archived_at
|
5
|
+
:setup_cost, :status, :archived_at, :billing_cycles, :redirect_url
|
6
6
|
|
7
7
|
# OPERATIONS
|
8
8
|
#-----------
|
@@ -6,8 +6,8 @@ module ChargeBee
|
|
6
6
|
end
|
7
7
|
|
8
8
|
attr_accessor :id, :plan_id, :plan_quantity, :status, :trial_start, :trial_end, :current_term_start,
|
9
|
-
:current_term_end, :created_at, :activated_at, :cancelled_at, :cancel_reason,
|
10
|
-
:due_since, :total_dues, :addons, :coupon
|
9
|
+
:current_term_end, :remaining_billing_cycles, :created_at, :activated_at, :cancelled_at, :cancel_reason,
|
10
|
+
:due_invoices_count, :due_since, :total_dues, :addons, :coupon
|
11
11
|
|
12
12
|
# OPERATIONS
|
13
13
|
#-----------
|
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.7
|
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-08-24 00:00:00 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: json_pure
|