-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhatchet.gemspec
33 lines (29 loc) · 1.38 KB
/
hatchet.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hatchet/version'
Gem::Specification.new do |gem|
gem.name = "heroku_hatchet"
gem.version = Hatchet::VERSION
gem.authors = ["Richard Schneeman"]
gem.email = ["richard.schneeman+rubygems@gmail.com"]
gem.description = %q{Hatchet is a an integration testing library for developing Heroku buildpacks.}
gem.summary = %q{Hatchet is a an integration testing library for developing Heroku buildpacks.}
gem.homepage = "https://github.com/heroku/hatchet"
gem.license = "MIT"
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.required_ruby_version = '>= 2.2.0'
gem.add_dependency "platform-api", "~> 3"
gem.add_dependency "rrrretry", "~> 1"
gem.add_dependency "excon", "~> 0"
gem.add_dependency "thor", "~> 1"
gem.add_dependency "threaded", "~> 0"
gem.add_development_dependency "rspec"
gem.add_development_dependency "rake", ">= 10"
gem.add_development_dependency "mocha", ">= 1"
gem.add_development_dependency "parallel_split_test"
gem.add_development_dependency "rspec-retry"
end