module GrepInteractors
Constants
- Import
- VERSION
Public Class Methods
call(interactors_path, file_path, query)
click to toggle source
# File lib/grep_interactors.rb, line 6 def self.call(interactors_path, file_path, query) file_paths = Parser.new(interactors_path, file_path).file_paths GrepInPaths.new.call(query, file_paths) end
container()
click to toggle source
# File lib/grep_interactors.rb, line 12 def self.container @@container ||= Containers::Base end