-
Notifications
You must be signed in to change notification settings - Fork 3
/
redis_feature_control.gemspec
27 lines (21 loc) · 1 KB
/
redis_feature_control.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/redis/feature_control/version", __FILE__)
Gem::Specification.new do |s|
s.name = "redis_feature_control"
s.version = Redis::FeatureControl::Version
s.platform = Gem::Platform::RUBY
s.authors = ['Ben VandenBos']
s.email = ['[email protected]']
s.homepage = "http://github.com/bvandenbos/redis_feature_control"
s.summary = "Feature enable/disable library on top of Redis"
s.description = "Feature enable/disable library on top of Redis"
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "bundler", ">= 1.0.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
s.add_runtime_dependency("redis", [">= 0.1.1"])
s.add_runtime_dependency("redis-namespace", [">= 0.2.0"])
s.add_development_dependency("mocha", [">= 0"])
s.add_development_dependency("rake", ["0.8.7"])
end