-
Notifications
You must be signed in to change notification settings - Fork 40
/
stoplight.gemspec
35 lines (28 loc) · 936 Bytes
/
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
# frozen_string_literal: true
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/bolshakov/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 = '>= 3.0.6'
gem.add_dependency 'redlock', '~> 1.0'
end