-
-
Notifications
You must be signed in to change notification settings - Fork 434
Expand file tree
/
Copy pathflipper-active_support_cache_store.gemspec
More file actions
25 lines (21 loc) · 1.09 KB
/
flipper-active_support_cache_store.gemspec
File metadata and controls
25 lines (21 loc) · 1.09 KB
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
# -*- 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', '< 9'
end