Skip to content

Commit

Permalink
Add #each_value method
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Jan 18, 2024
1 parent df7d756 commit 3999003
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/active_settings/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ def each_key(*args, &block)
end


def each_value(*args, &block)
marshal_dump.each_value(*args, &block)
end


def collect(*args, &block)
marshal_dump.collect(*args, &block)
end
Expand Down

0 comments on commit 3999003

Please sign in to comment.