class Firuta::Commands::Find

Public Class Methods

terminal?() click to toggle source
# File lib/firuta/commands/find.rb, line 10
def self.terminal?
  true
end

Public Instance Methods

apply_to(collection) click to toggle source
# File lib/firuta/commands/find.rb, line 6
def apply_to(collection)
  collection.find(&@proc)
end