-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalerty.gemspec
28 lines (24 loc) · 1.05 KB
/
alerty.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
require_relative 'lib/alerty/version'
Gem::Specification.new do |gem|
gem.name = "alerty"
gem.version = Alerty::VERSION
gem.author = ['Naotoshi Seo']
gem.email = ['sonots@gmail.com']
gem.homepage = 'https://github.com/sonots/alerty'
gem.summary = "Send an alert if a given command failed"
gem.description = "Send an alert if a given command failed"
gem.licenses = ['MIT']
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'hashie'
gem.add_runtime_dependency 'oneline_log_formatter'
gem.add_runtime_dependency 'frontkick', '>= 0.5.5'
gem.add_runtime_dependency 'dotenv'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'pry-nav'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'bundler'
end