-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathconcourse-github-status.gemspec
More file actions
25 lines (19 loc) · 1011 Bytes
/
concourse-github-status.gemspec
File metadata and controls
25 lines (19 loc) · 1011 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
Gem::Specification.new do |gem|
tag = `git describe --tags --abbrev=0`.chomp
gem.name = 'concourse-github-status'
gem.homepage = 'https://github.com/colstrom/concourse-github-status'
gem.summary = 'GitHub Status resource for Concourse'
gem.version = "#{tag}"
gem.licenses = ['MIT']
gem.authors = ['Chris Olstrom']
gem.email = 'chris@olstrom.com'
gem.cert_chain = ['trust/certificates/colstrom.pem']
gem.signing_key = File.expand_path ENV.fetch 'GEM_SIGNING_KEY'
gem.files = `git ls-files -z`.split("\x0")
gem.executables = `git ls-files -z -- bin/*`.split("\x0").map { |f| File.basename(f) }
gem.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
gem.require_paths = ['lib']
gem.add_runtime_dependency 'concourse-fuselage', '~> 0.1', '>= 0.1.0'
gem.add_runtime_dependency 'git', '~> 1.3', '>= 1.3.0'
gem.add_runtime_dependency 'octokit', '~> 4.2', '>= 4.2.0'
end