forked from chargebee/chargebee-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchargebee.gemspec
79 lines (69 loc) · 2.51 KB
/
chargebee.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = '1.3.5'
s.name = 'chargebee'
s.version = '2.2.6'
s.date = '2017-03-16'
s.summary = "Ruby client for Chargebee API."
s.description = "Subscription Billing - Simple. Secure. Affordable. More details at www.chargebee.com."
s.authors = ['Rajaraman S', 'Thiyagarajan T']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://apidocs.chargebee.com/api/docs?lang=ruby'
s.require_paths = %w[lib]
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.rdoc LICENSE]
s.add_dependency('json_pure', '~> 1.5')
s.add_dependency('rest-client', '~> 1.4')
s.add_development_dependency('rspec', '~> 3.0.0')
s.add_development_dependency('mocha')
# = MANIFEST =
s.files = %w[
CHANGELOG.md
LICENSE
README.rdoc
Rakefile
chargebee.gemspec
lib/chargebee.rb
lib/chargebee/environment.rb
lib/chargebee/errors.rb
lib/chargebee/list_result.rb
lib/chargebee/models/addon.rb
lib/chargebee/models/address.rb
lib/chargebee/models/card.rb
lib/chargebee/models/comment.rb
lib/chargebee/models/coupon.rb
lib/chargebee/models/coupon_code.rb
lib/chargebee/models/credit_note.rb
lib/chargebee/models/credit_note_estimate.rb
lib/chargebee/models/customer.rb
lib/chargebee/models/download.rb
lib/chargebee/models/estimate.rb
lib/chargebee/models/event.rb
lib/chargebee/models/hosted_page.rb
lib/chargebee/models/invoice.rb
lib/chargebee/models/invoice_estimate.rb
lib/chargebee/models/model.rb
lib/chargebee/models/order.rb
lib/chargebee/models/plan.rb
lib/chargebee/models/portal_session.rb
lib/chargebee/models/resource_migration.rb
lib/chargebee/models/site_migration_detail.rb
lib/chargebee/models/subscription.rb
lib/chargebee/models/subscription_estimate.rb
lib/chargebee/models/third_party_payment_method.rb
lib/chargebee/models/transaction.rb
lib/chargebee/request.rb
lib/chargebee/rest.rb
lib/chargebee/result.rb
lib/chargebee/util.rb
lib/ssl/ca-certs.crt
spec/chargebee/list_result_spec.rb
spec/chargebee_spec.rb
spec/errors_spec.rb
spec/sample_response.rb
spec/spec_helper.rb
]
# = MANIFEST =
s.test_files = s.files.select { |path| path =~ /^spec\/.*\.rb/ }
end