Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ PATH
featury (1.0.0.rc24)
activesupport (>= 5.1, < 8.1)
i18n (>= 1.14)
servactory (>= 2.15)
servactory (>= 2.16)
zeitwerk (>= 2.6)

GEM
remote: https://rubygems.org/
specs:
activesupport (8.0.2)
activesupport (8.0.2.1)
base64
benchmark (>= 0.3)
bigdecimal
Expand All @@ -37,24 +37,24 @@ GEM
drb (2.2.3)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
json (2.13.0)
json (2.13.2)
language_server-protocol (3.17.0.5)
lint_roller (1.1.0)
logger (1.7.0)
minitest (5.25.5)
mutex_m (0.3.0)
parallel (1.27.0)
parser (3.3.8.0)
parser (3.3.9.0)
ast (~> 2.4.1)
racc
prism (1.4.0)
racc (1.8.1)
rack (3.1.16)
rack (3.2.0)
rainbow (3.1.1)
rake (13.3.0)
rbs (3.9.4)
logger
regexp_parser (2.10.0)
regexp_parser (2.11.2)
rspec (3.13.1)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
Expand All @@ -67,16 +67,16 @@ GEM
rspec-mocks (3.13.5)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.4)
rubocop (1.78.0)
rspec-support (3.13.5)
rubocop (1.80.0)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.45.1, < 2.0)
rubocop-ast (>= 1.46.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.46.0)
Expand All @@ -89,7 +89,7 @@ GEM
lint_roller (~> 1.1)
rubocop (>= 1.75.0, < 2.0)
rubocop-ast (>= 1.38.0, < 2.0)
rubocop-rails (2.32.0)
rubocop-rails (2.33.3)
activesupport (>= 4.2.0)
lint_roller (~> 1.1)
rack (>= 1.1)
Expand All @@ -107,7 +107,7 @@ GEM
rubocop-rspec (~> 3.5)
ruby-progressbar (1.13.0)
securerandom (0.4.1)
servactory (2.15.1)
servactory (2.16.0)
activesupport (>= 5.1, < 8.1)
base64 (>= 0.2)
bigdecimal (>= 3.1)
Expand All @@ -125,7 +125,7 @@ GEM
thor (1.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (3.1.4)
unicode-display_width (3.1.5)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
uri (1.0.3)
Expand Down Expand Up @@ -153,4 +153,4 @@ DEPENDENCIES
servactory-rubocop (>= 0.9)

BUNDLED WITH
2.7.0
2.7.1
2 changes: 1 addition & 1 deletion featury.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|

spec.add_dependency "activesupport", ">= 5.1", "< 8.1"
spec.add_dependency "i18n", ">= 1.14"
spec.add_dependency "servactory", ">= 2.15"
spec.add_dependency "servactory", ">= 2.16"
spec.add_dependency "zeitwerk", ">= 2.6"

spec.add_development_dependency "appraisal", ">= 2.5"
Expand Down
1 change: 1 addition & 0 deletions lib/featury/actions/collection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Featury
module Actions
class Collection
extend Forwardable

def_delegators :@collection, :<<, :filter, :each, :map, :merge, :find

def initialize(collection = Set.new)
Expand Down
1 change: 1 addition & 0 deletions lib/featury/callbacks/collection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Featury
module Callbacks
class Collection
extend Forwardable

def_delegators :@collection, :<<, :filter, :each, :map, :merge, :find

def initialize(collection = Set.new)
Expand Down
1 change: 1 addition & 0 deletions lib/featury/conditions/collection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Featury
module Conditions
class Collection
extend Forwardable

def_delegators :@collection, :<<, :each, :merge, :all?

def initialize(collection = Set.new)
Expand Down
1 change: 1 addition & 0 deletions lib/featury/features/collection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Featury
module Features
class Collection
extend Forwardable

def_delegators :@collection, :<<, :each, :map, :merge, :to_a, :empty?

def initialize(collection = Set.new)
Expand Down
1 change: 1 addition & 0 deletions lib/featury/groups/collection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Featury
module Groups
class Collection
extend Forwardable

def_delegators :@collection, :<<, :each, :map, :flat_map, :filter, :to_h, :merge, :to_a, :all?, :empty?

def initialize(collection = Set.new)
Expand Down
1 change: 1 addition & 0 deletions lib/featury/resources/collection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module Featury
module Resources
class Collection
extend Forwardable

def_delegators :@collection, :<<, :each, :map, :filter, :to_h, :merge

def initialize(collection = Set.new)
Expand Down