forked from chirag7jain/ups
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ups.gemspec
24 lines (19 loc) · 829 Bytes
/
ups.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
require File.expand_path('../lib/ups/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'ups'
gem.version = UPS::Version::STRING
gem.platform = Gem::Platform::RUBY
gem.authors = ['Paul Trippett']
gem.email = ['paul@veeqo.com']
gem.homepage = 'http://github.com/ptrippett/ups'
gem.summary = 'UPS'
gem.description = 'UPS Gem for accessing the UPS API from Ruby'
gem.license = 'AGPL'
gem.required_rubygems_version = '>= 1.3.6'
gem.add_runtime_dependency 'ox', '~> 2.2', '>= 2.2.0'
gem.add_runtime_dependency 'excon', '~> 0.45', '>= 0.45.3'
gem.add_runtime_dependency 'insensitive_hash', '~> 0.3.3'
gem.add_runtime_dependency 'levenshtein-ffi', '~> 1.1'
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.require_path = 'lib'
end