forked from veeqo/ups-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ups.gemspec
25 lines (20 loc) · 905 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
25
require File.expand_path('../lib/ups/version', __FILE__)
require 'English'
Gem::Specification.new do |gem|
gem.name = 'ups-ruby'
gem.version = UPS::Version::STRING
gem.platform = Gem::Platform::RUBY
gem.authors = ['Veeqo']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/veeqo/ups-ruby'
gem.summary = 'UPS'
gem.description = 'UPS Gem for accessing the UPS API from Ruby'
gem.license = 'MIT'
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', git: "https://github.com/zilverline/levenshtein-ffi.git"
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.require_path = 'lib'
end