forked from sportngin/active_zuora
-
Notifications
You must be signed in to change notification settings - Fork 1
/
active_zuora.gemspec
30 lines (28 loc) · 1.29 KB
/
active_zuora.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "active_zuora/version"
authors = {
"Ed Lebert" => "edlebert@gmail.com",
"Andy Fleener" => "andy.fleener@sportngin.com",
}
Gem::Specification.new do |s|
s.name = "active_zuora"
s.version = ActiveZuora::VERSION.to_s
s.platform = Gem::Platform::RUBY
s.authors = authors.keys
s.email = authors.values
s.homepage = "https://github.com/sportngin/active_zuora"
s.summary = %q{ActiveZuora - Zuora API that looks and feels like ActiveRecord.}
s.description = %q{ActiveZuora - Zuora API based on ActiveModel and auto-generated from your zuora.wsdl.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.license = "MIT"
s.extra_rdoc_files = [ "README.md" ]
s.add_runtime_dependency('savon', ["~> 1.2.0"])
s.add_runtime_dependency('activesupport', [">= 3.0.0", "< 5.0.0"])
s.add_runtime_dependency('activemodel', [">= 3.0.0", "< 5.0.0"])
s.add_development_dependency('rake', [">= 0.8.7"])
s.add_development_dependency('rspec', [">= 3.0.0"])
end