chargebee 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.0'
8
- s.date = '2012-10-15'
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
@@ -23,7 +23,7 @@ require File.dirname(__FILE__) + '/chargebee/models/coupon'
23
23
 
24
24
  module ChargeBee
25
25
 
26
- VERSION = '1.1.0'
26
+ VERSION = '1.1.1'
27
27
 
28
28
  @@default_env = nil
29
29
  @@verify_ca_certs = true
@@ -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.0
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-15 00:00:00 Z
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
@@ -1,13 +0,0 @@
1
- module ChargeBee
2
- module Version
3
-
4
- VERSION = '1.0.2'
5
-
6
- class << self
7
- def inspect
8
- VERSION.dup
9
- end
10
- alias to_s inspect
11
- end
12
- end
13
- end