-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbark.gemspec
39 lines (32 loc) · 1.35 KB
/
bark.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
31
32
33
34
35
36
37
38
39
# coding: utf-8
#
# Notes for deploying
# gem build bark.gemspec
# gem install ./bark-0.0.1.gem
# gem yank bark -v 0.0.1
# gem push bark-0.0.1.gem
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bark/version'
Gem::Specification.new do |spec|
spec.name = "bark"
spec.version = Bark::VERSION
spec.authors = ["Matt Yoder"]
spec.email = ["[email protected]"]
spec.summary = %q{A Ruby wrapper on the Open Tree API.}
spec.description = %q{A wrapper on the Open Tree API, developed during the open tree hackathon in September, 2014.}
spec.homepage = "https://github.com/SpeciesFileGroup/bark"
spec.license = "BSD"
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.required_ruby_version = '~> 2.1'
spec.add_runtime_dependency 'json', '~> 1.8'
spec.add_runtime_dependency 'hashie', '~> 3.3'
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake", "~> 10.3"
spec.add_development_dependency "byebug", "~> 3.4"
spec.add_development_dependency "rspec", '~> 3.1'
spec.add_development_dependency "awesome_print", '~> 1.2'
end