forked from flippercloud/flipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflipper-active_support_cache_store.gemspec
26 lines (22 loc) · 1.19 KB
/
flipper-active_support_cache_store.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/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 = ['[email protected]']
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'] # rubocop:disable Metrics/LineLength
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").select(&flipper_active_support_cache_store_files) # rubocop:disable Metrics/LineLength
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', '< 7'
end