-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathshipstation-ruby.gemspec
27 lines (24 loc) · 1.02 KB
/
shipstation-ruby.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "shipstation-ruby"
gem.version = "0.0.1"
gem.authors = ["Cody Duval"]
gem.email = ["cody.duval@gmail.com"]
gem.description = 'An API wrapper for the ShipStation API'
gem.summary = 'An API wrapper for the ShipStation API'
gem.homepage = 'https://github.com/codyduval/shipstation-ruby'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'rash'
gem.add_dependency 'ruby_odata'
gem.add_development_dependency 'minitest'
gem.add_development_dependency 'turn'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'vcr'
gem.add_development_dependency 'webmock'
gem.add_development_dependency 'bundler'
end