1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/commands/ls/grep.rb

16 lines
234 B
Ruby
Raw Normal View History

class Pry
class Command::Ls < Pry::ClassCommand
class Grep
def initialize(grep_regexp)
@grep_regexp = grep_regexp
end
def regexp
proc { |x| x.grep(@grep_regexp) }
end
end
end
end