-
Notifications
You must be signed in to change notification settings - Fork 7
/
heroku-headless.gemspec
23 lines (20 loc) · 1.06 KB
/
heroku-headless.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/heroku-headless/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Pete Hodgson"]
gem.email = ["[email protected]"]
gem.description = %q{Push from your git repo to a heroku app without any external configuration.}
gem.summary = %q{Heroku's workflow is geared towards pushing to a heroku app from a dev workstation. This gem makes it easy to push to a heroku app as part of a CI/CD setup.}
gem.homepage = "https://github.com/moredip/heroku-headless"
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.name = "heroku-headless"
gem.require_paths = ["lib"]
gem.version = HerokuHeadless::VERSION
gem.add_runtime_dependency "heroku-api"
gem.add_runtime_dependency "rendezvous"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "pry"
end