-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpin_flags.gemspec
More file actions
28 lines (22 loc) · 1.3 KB
/
pin_flags.gemspec
File metadata and controls
28 lines (22 loc) · 1.3 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
26
27
28
require_relative "lib/pin_flags/version"
Gem::Specification.new do |spec|
spec.name = "pin_flags"
spec.version = PinFlags::VERSION
spec.authors = [ "Demetrious Wilson" ]
spec.email = [ "demetriouswilson@gmail.com" ]
spec.homepage = "https://github.com/taywils/pin_flags"
spec.summary = "⛳PinFlags is a granular, polymorphic feature access system"
spec.description = "A lightweight Rails engine for managing entity-based feature flags with built-in caching support. Pin features to any ActiveRecord model with polymorphic associations, providing a flexible alternative to traditional feature flags. Includes a configurable cache expiry, and isolated namespace to avoid conflicts."
spec.license = "MIT"
spec.metadata["source_code_uri"] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", "~> 8.0", ">= 8.0.2"
spec.add_dependency "turbo-rails", "~> 2.0"
spec.add_development_dependency "debug", "~> 1.9"
spec.add_development_dependency "rubocop-performance", "~> 1.21"
spec.add_development_dependency "rubocop-rails-omakase", "~> 1.0"
spec.add_development_dependency "propshaft", "~> 1.0"
spec.required_ruby_version = ">= 3.0"
end