0
0
mirror of https://github.com/thegeeklab/retry.git synced 2024-10-23 08:30:41 +00:00
retry/retryit.gemspec
2015-03-26 14:50:34 -04:00

16 lines
550 B
Ruby

# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'retryit'
s.version = '0.1.0'
s.summary = "retry any command line"
s.description = "General purpose retry cli program for anything"
s.authors = ["Neville Kadwa"]
s.email = ["neville@kadwa.com"]
s.files = Dir['lib/**/*.rb'] + Dir['bin/*'] + Dir['[A-Z]*']
s.test_files = Dir['test/**/*']
s.executables = Dir['bin/**/*'].map{|f| File.basename(f)}
s.homepage = 'http://github.com/kadwanev/retry'
s.licenses = ['Apache-2.0']
end