forked from bolshakov/stoplight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstoplight.gemspec
More file actions
49 lines (42 loc) · 1.29 KB
/
stoplight.gemspec
File metadata and controls
49 lines (42 loc) · 1.29 KB
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
# 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' => 'camdez@gmail.com',
'Taylor Fausak' => 'taylor@fausak.me',
'Justin Steffy' => 'steffy@orgsync.com'
}.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 = '>= 1.9.3'
{
'benchmark-ips' => '2.2',
'coveralls' => '0.8',
'fakeredis' => '0.5',
'guard' => '2.12',
'guard-rspec' => '4.6',
'guard-rubocop' => '1.2',
'hipchat' => '1.5',
'rake' => '10.4',
'redis' => '3.2',
'rspec' => '3.3',
'rubocop' => '0.32',
'slack-notifier' => '1.2',
'timecop' => '0.7',
'yard' => '0.8'
}.each do |name, version|
gem.add_development_dependency(name, "~> #{version}")
end
end