forked from txcrb/tax_cloud
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtax_cloud.gemspec
More file actions
27 lines (23 loc) · 989 Bytes
/
tax_cloud.gemspec
File metadata and controls
27 lines (23 loc) · 989 Bytes
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
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "tax_cloud/version"
Gem::Specification.new do |s|
s.name = "tax_cloud-magplus"
s.version = TaxCloud::VERSION
s.date = %q{2012-04-11}
s.authors = ["Drew Tempelmeyer", "Mikael Amborn", "Lennart Fridén"]
s.email = ["backend@magplus.com"]
s.homepage = "https://github.com/magplus/tax_cloud"
s.summary = %q{Calculate sales tax using TaxCloud}
s.description = %q{Calculate sales tax using the TaxCloud.net API}
s.required_rubygems_version = '>= 1.3.6'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency 'savon', '1.0.0'
# Development dependencies
s.add_development_dependency 'rake', '~> 0.9.2'
s.add_development_dependency 'rdoc', '~> 3.12.0'
s.add_development_dependency 'vcr', '~> 2.0.1'
s.add_development_dependency 'webmock', '~> 1.8.6'
end