class Tagfinder::CLI

Public Class Methods

exit_on_failure?() click to toggle source
# File lib/tagfinder.rb, line 12
def self.exit_on_failure?
  true
end

Public Instance Methods

find(url, text) click to toggle source
# File lib/tagfinder.rb, line 17
def find(url, text)
  find_command = Find.new(url, text)
  find_command.execute()
end