-
Notifications
You must be signed in to change notification settings - Fork 55
/
avatax.gemspec
23 lines (22 loc) · 1.07 KB
/
avatax.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/avatax/version', __FILE__)
Gem::Specification.new do |s|
s.add_development_dependency('rake', '~> 12.0.0')
s.add_development_dependency('rspec', '~> 3.5.0')
s.add_development_dependency('webmock', '>= 2.0.0')
s.add_runtime_dependency('faraday', '>= 0.10')
s.add_runtime_dependency('multi_json', '>= 1.0.3')
s.add_runtime_dependency('activesupport', '>= 6.1.7')
s.authors = ["Marcus Vorwaller"]
s.description = %q{A Ruby wrapper for the AvaTax REST and Search APIs}
s.email = ['[email protected]']
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.homepage = 'https://github.com/avadev/AvaTax-REST-V2-Ruby-SDK'
s.name = 'avatax'
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.required_rubygems_version = Gem::Requirement.new('>= 2.0.0') if s.respond_to? :required_rubygems_version=
s.summary = %q{Ruby wrapper for the AvaTax API}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = AvaTax::VERSION.dup
end