forked from fetlife/rollout
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollout.gemspec
31 lines (25 loc) · 1.11 KB
/
rollout.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'rollout/version'
Gem::Specification.new do |spec|
spec.name = 'rollout'
spec.version = Rollout::VERSION
spec.authors = ['James Golick']
spec.email = ['[email protected]']
spec.description = 'Feature flippers with redis.'
spec.summary = 'Feature flippers with redis.'
spec.homepage = 'https://github.com/FetLife/rollout'
spec.license = 'MIT'
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'
spec.add_dependency 'redis', '~> 4.0'
spec.add_development_dependency 'bundler', '>= 1.17'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.4'
spec.add_development_dependency 'rubocop', '~> 0.71'
spec.add_development_dependency 'simplecov', '0.17'
end