forked from mattsears/stamps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stamps.gemspec
41 lines (35 loc) · 1.74 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.3')
s.add_development_dependency('mocha', '~> 0.9.11')
s.add_development_dependency('webmock', '~> 1.6.2')
s.add_development_dependency('awesome_print')
s.add_development_dependency('yard')
s.add_development_dependency('bluecloth')
s.add_development_dependency('rake')
s.add_development_dependency('pry')
# 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.0')
s.add_runtime_dependency('httpi', '~> 2.1.0')
s.add_runtime_dependency('json', '~> 1.0')
s.add_runtime_dependency('multi_json', '~> 1.0')
s.add_runtime_dependency('hashie', '~> 1.0.0')
end