forked from dholdren/feature_guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature_guard.gemspec
26 lines (22 loc) · 1015 Bytes
/
feature_guard.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/feature_guard/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ted Dumitrescu"]
gem.email = ["webdev@cmme.org"]
gem.summary = %q{Simple Redis-based feature-flagging}
gem.description = <<end
Feature flags made simple: turn code on or off with Redis controls, allowing
plain enabled/disabled states as well as finer-grained percentage-based control.
end
gem.homepage = "https://github.com/tdumitrescu/feature_guard"
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.name = "feature_guard"
gem.require_paths = ["lib"]
gem.version = FeatureGuard::VERSION
gem.add_dependency "redis", "~> 3.0"
gem.add_development_dependency "fakeredis", "~> 0.4"
gem.add_development_dependency "rspec", "~> 2.99"
end