forked from bolshakov/stoplight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stoplight.gemspec
51 lines (44 loc) · 1.28 KB
/
stoplight.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# coding: utf-8
lib = File.expand_path('lib', File.dirname(__FILE__))
$LOAD_PATH.push(lib) unless $LOAD_PATH.include?(lib)
require 'stoplight/version'
Gem::Specification.new do |gem|
gem.name = 'stoplight'
gem.version = Stoplight::VERSION
gem.summary = 'Traffic control for code.'
gem.description = 'An implementation of the circuit breaker pattern.'
gem.homepage = 'https://github.com/orgsync/stoplight'
gem.license = 'MIT'
{
'Cameron Desautels' => '[email protected]',
'Taylor Fausak' => '[email protected]',
'Justin Steffy' => '[email protected]'
}.tap do |hash|
gem.authors = hash.keys
gem.email = hash.values
end
gem.files = %w(
CHANGELOG.md
LICENSE.md
README.md
) + Dir.glob(File.join('lib', '**', '*.rb'))
gem.test_files = Dir.glob(File.join('spec', '**', '*.rb'))
gem.required_ruby_version = '>= 2.1'
{
'benchmark-ips' => '2.3',
'bugsnag' => '4.0',
'coveralls' => '0.8',
'fakeredis' => '0.5',
'hipchat' => '1.5',
'honeybadger' => '2.5',
'sentry-raven' => '1.2',
'rake' => '11.1',
'redis' => '3.2',
'rspec' => '3.3',
'rubocop' => '0.40.0',
'slack-notifier' => '1.3',
'timecop' => '0.8'
}.each do |name, version|
gem.add_development_dependency(name, "~> #{version}")
end
end