forked from jotolo/stamps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstamps.gemspec
executable file
·41 lines (36 loc) · 1.83 KB
/
stamps.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "stamps/version"
Gem::Specification.new do |s|
s.name = "stamps"
s.version = Stamps::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matt Sears"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/stamps"
s.summary = %q{Ruby wrapper for the Stamps.com Web Services API}
s.description = %q{Stamps is Stamps.com backed library for creating postage labels, calculate the shipping cost of packages, standardize domestic addresses via USPS CASS certified Address Matching Software, and track shipments.}
s.rubyforge_project = "stamps"
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.add_development_dependency('simplecov', '~> 0.4.0')
s.add_development_dependency 'shoulda', '~> 2.11', '>= 2.11.3'
s.add_development_dependency('mocha', '~> 0.9.11')
s.add_development_dependency 'webmock', '~> 1.6', '>= 1.6.2'
s.add_development_dependency 'awesome_print', '~> 0'
s.add_development_dependency 'yard', '~> 0'
s.add_development_dependency 'bluecloth', '>= 0', '~> 0'
s.add_development_dependency 'rake', '~> 0'
s.add_development_dependency 'pry', '~> 0'
# We have to use savon 0.8.6 for now since newer versions of savon don't
# convert booleans, dates, or decimals consistently.
# See: https://github.com/rubiii/savon/issues/301
#
s.add_runtime_dependency 'savon', '~> 2.3', '>= 2.3.0'
s.add_runtime_dependency 'httpi', '~> 2.1', '>= 2.1.0'
s.add_runtime_dependency('json', '~> 1.0')
s.add_runtime_dependency('multi_json', '~> 1.0')
# s.add_runtime_dependency 'hashie', '~> 3.5.2', '>= 3.5.2'
end