-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathship_station.gemspec
More file actions
29 lines (22 loc) · 918 Bytes
/
ship_station.gemspec
File metadata and controls
29 lines (22 loc) · 918 Bytes
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
# $:.push File.expand_path("../lib", __FILE__)
require_relative "lib/ship_station/version"
Gem::Specification.new do |s|
s.name = "ship_station"
s.version = ShipStation::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ben Jacobs"]
s.email = ["benjaminpjacobs@gmail.com"]
s.summary = %q{Shipstation API}
s.description = %q{Shipstation API}
s.metadata['allowed_push_host'] = 'https://rubygems.org'
s.files = Dir["MIT-LICENSE", "CHANGELOG.md", "README.md", "lib/**/*"]
s.test_files = Dir["spec/**/*"]
s.require_paths = ["lib"]
s.required_ruby_version = '>= 2.3'
s.add_runtime_dependency 'her', '0.10.1'
s.add_runtime_dependency 'activesupport'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'rake', '~> 12.0'
s.add_development_dependency 'rspec', '~> 3.0'
end