Sha256: 06a40ffbc79af1d73e8814695ece24907fd75c7454fc68bcf1bead7ae039233d
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
$:.push File.expand_path('../lib', __FILE__) require 'feature_gate/version' Gem::Specification.new do |s| s.name = 'feature_gate' s.version = FeatureGate::VERSION.dup s.date = '2016-05-01' s.summary = 'A gem to toggle feature gates on and off' s.description = 'A gem to help manage toggling features on and off in Rails applications without having to re-deploy. Includes a preconfigured page for gate management and an executable for feature gate code cleanup in your codebase after a feature has been deployed.' s.authors = ['Tiffany Huang'] s.email = 'little.huang@gmail.com' s.files = `git ls-files`.split("\n") s.homepage = 'https://github.com/tiffling/feature_gate' s.license = 'MIT' s.require_paths = ['lib'] s.executables = ['feature_gate_cleaner'] s.add_dependency 'rails', '~> 4.0' s.add_development_dependency('sqlite3', '~> 1.3') s.add_development_dependency('rspec-rails', '~> 3.1') s.add_development_dependency('factory_girl_rails', '~> 4.5') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
feature_gate-0.2.6 | feature_gate.gemspec |
feature_gate-0.2.5 | feature_gate.gemspec |