Sha256: 5ea2787bc521930da6b76380c976edbd4a4ed9044440fee7fb6f581ffa8b2ef1

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/flipper/version', __FILE__)
require File.expand_path('../lib/flipper/metadata', __FILE__)

flipper_active_support_cache_store_files = lambda do |file|
  file =~ /active_support_cache_store/
end

Gem::Specification.new do |gem|
  gem.authors       = ['John Nunemaker']
  gem.email         = ['nunemaker@gmail.com']
  gem.summary       = 'ActiveSupport::Cache store adapter for Flipper'
  gem.description   = 'ActiveSupport::Cache store adapter for Flipper'
  gem.license       = 'MIT'
  gem.homepage      = 'https://github.com/jnunemaker/flipper'

  gem.files         = `git ls-files`.split("\n").select(&flipper_active_support_cache_store_files) + ['lib/flipper/version.rb']
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n").select(&flipper_active_support_cache_store_files)
  gem.name          = 'flipper-active_support_cache_store'
  gem.require_paths = ['lib']
  gem.version       = Flipper::VERSION
  gem.metadata      = Flipper::METADATA

  gem.add_dependency 'flipper', "~> #{Flipper::VERSION}"
  gem.add_dependency 'activesupport', '>= 3.2', '< 6'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
flipper-active_support_cache_store-0.16.2 flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-0.16.1 flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-0.16.0 flipper-active_support_cache_store.gemspec