-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcapistrano-graphite.gemspec
33 lines (29 loc) · 1.27 KB
/
capistrano-graphite.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'capistrano/graphite/version'
Gem::Specification.new do |s|
s.name = 'capistrano-graphite'
s.version = Capistrano::Graphite::VERSION
s.authors = ['scottsuch']
s.email = ['[email protected]']
s.summary = 'A gem for pushing graphite events via capistrano v3 ' \
'deployment'
s.description = 'This gem plugs into the deploy task in capistrano to ' \
'help provide visibility into when deployments and ' \
'rollbacks occured.'
s.homepage = 'https://github.com/scottsuch/capistrano-graphite'
s.license = 'MIT'
s.required_ruby_version = '> 1.9'
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.add_dependency 'capistrano', '~> 3.0'
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'webmock'
end