chargebee 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/chargebee.gemspec +2 -3
- data/lib/chargebee.rb +1 -1
- data/lib/chargebee/models/plan.rb +1 -1
- metadata +2 -3
- data/lib/chargebee/version.rb +0 -13
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.1.
|
8
|
-
s.date = '2012-10-
|
7
|
+
s.version = '1.1.1'
|
8
|
+
s.date = '2012-10-19'
|
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."
|
@@ -53,7 +53,6 @@ Gem::Specification.new do |s|
|
|
53
53
|
lib/chargebee/rest.rb
|
54
54
|
lib/chargebee/result.rb
|
55
55
|
lib/chargebee/util.rb
|
56
|
-
lib/chargebee/version.rb
|
57
56
|
lib/ssl/ca-certs.crt
|
58
57
|
spec/chargebee_spec.rb
|
59
58
|
spec/sample_response.rb
|
data/lib/chargebee.rb
CHANGED
@@ -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, :billing_cycles, :redirect_url
|
5
|
+
:free_quantity, :setup_cost, :status, :archived_at, :billing_cycles, :redirect_url
|
6
6
|
|
7
7
|
# OPERATIONS
|
8
8
|
#-----------
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: chargebee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 1.1.
|
5
|
+
version: 1.1.1
|
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-10-
|
14
|
+
date: 2012-10-19 00:00:00 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: json_pure
|
@@ -94,7 +94,6 @@ files:
|
|
94
94
|
- lib/chargebee/rest.rb
|
95
95
|
- lib/chargebee/result.rb
|
96
96
|
- lib/chargebee/util.rb
|
97
|
-
- lib/chargebee/version.rb
|
98
97
|
- lib/ssl/ca-certs.crt
|
99
98
|
- spec/chargebee_spec.rb
|
100
99
|
- spec/sample_response.rb
|