Sha256: ef61aab08d9b7ab646c7ad8fb3bda7c199ec28de55c2bade1fbbcb73cd967526

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 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         = 'support@flippercloud.io'
  gem.summary       = 'ActiveSupport::Cache feature flag cache adapter for Flipper'
  gem.license       = 'MIT'
  gem.homepage      = 'https://www.flippercloud.io/docs/optimization#activesupportcachestore'

  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', '>= 4.2', '< 8'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
flipper-active_support_cache_store-1.3.1 flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-1.3.0 flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-1.3.0.pre flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-1.2.2 flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-1.2.1 flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-1.2.0 flipper-active_support_cache_store.gemspec
flipper-active_support_cache_store-1.1.2 flipper-active_support_cache_store.gemspec