-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoshpark.gemspec
30 lines (25 loc) · 1.13 KB
/
oshpark.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'oshpark/version'
Gem::Specification.new do |spec|
spec.name = "oshpark"
spec.version = Oshpark::VERSION
spec.authors = ["James Harton", "Henry Maddocks"]
spec.email = ["james@resistor.io", "henry@resistor.io"]
spec.summary = %q{API and command line client for oshpark.com}
spec.description = %q{API and command line client for PCB fabrication via oshpark.com}
spec.homepage = "https://github.com/oshpark/ruby-api-client"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.6"
%w| rspec-core rspec-mocks rspec-its guard-rspec guard-bundler pry rake
byebug vcr webmock dotenv |.each do |gem|
spec.add_development_dependency gem
end
spec.add_dependency 'micro_token'
spec.add_dependency 'thor'
end