-
Notifications
You must be signed in to change notification settings - Fork 1
/
tries.gemspec
31 lines (26 loc) · 1.17 KB
/
tries.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
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tries/version'
Gem::Specification.new do |gem|
gem.name = 'tries'
gem.version = Tries::VERSION
gem.platform = Gem::Platform::RUBY
gem.author = 'Manuel Meurer'
gem.email = '[email protected]'
gem.summary = 'Solidify your code and retry on petty exceptions'
gem.description = 'Solidify your code and retry on petty exceptions'
gem.homepage = ''
gem.license = 'MIT'
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.require_paths = ['lib']
gem.add_development_dependency 'rake', '>= 0.9.0'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rb-fsevent', '~> 0.9'
gem.add_development_dependency 'guard-rspec', '~> 4.2'
# Listen >= 2.0.0 only works with Ruby >= 1.9.3
gem.add_development_dependency 'listen', '< 2.0.0' if RUBY_VERSION < '1.9.3'
gem.add_runtime_dependency 'gem_config', '~> 0.2'
end