Class: TestLauncher::Search::Git
- Inherits:
-
Object
- Object
- TestLauncher::Search::Git
- Defined in:
- lib/test_launcher/search/git.rb
Defined Under Namespace
Classes: Interface
Constant Summary collapse
- NotInRepoError =
Class.new(BaseError)
Instance Attribute Summary collapse
-
#interface ⇒ Object
readonly
Returns the value of attribute interface.
Instance Method Summary collapse
- #find_files(pattern) ⇒ Object
- #grep(regex, file_pattern: '*') ⇒ Object
-
#initialize(shell, interface = Interface.new(shell)) ⇒ Git
constructor
A new instance of Git.
- #ls_files(pattern) ⇒ Object
Constructor Details
#initialize(shell, interface = Interface.new(shell)) ⇒ Git
Returns a new instance of Git.
43 44 45 46 |
# File 'lib/test_launcher/search/git.rb', line 43 def initialize(shell, interface=Interface.new(shell)) @interface = interface Dir.chdir(root_path) # MOVE ME! end |
Instance Attribute Details
#interface ⇒ Object (readonly)
Returns the value of attribute interface.
41 42 43 |
# File 'lib/test_launcher/search/git.rb', line 41 def interface @interface end |
Instance Method Details
#find_files(pattern) ⇒ Object
52 53 54 55 56 57 58 59 60 |
# File 'lib/test_launcher/search/git.rb', line 52 def find_files(pattern) relative_pattern = strip_system_path(pattern) if File.exist?(relative_pattern) [system_path(relative_pattern)] else interface.ls_files(relative_pattern).map {|f| system_path(f)} end end |
#grep(regex, file_pattern: '*') ⇒ Object
62 63 64 65 66 67 |
# File 'lib/test_launcher/search/git.rb', line 62 def grep(regex, file_pattern: '*') results = interface.grep(regex, file_pattern) results.map do |result| interpret_grep_result(result) end end |
#ls_files(pattern) ⇒ Object
48 49 50 |
# File 'lib/test_launcher/search/git.rb', line 48 def ls_files(pattern) interface.ls_files(pattern) end |