module Grepity
Constants
- VERSION
Public Class Methods
run!()
click to toggle source
# File lib/grepity.rb, line 7 def self.run! options = Option.parse text = TargetText.new(ARGV[0], options) TargetFile.new(ARGV[1]).match(text.value).each do |line| puts line.result(text.value, options) end end