module HttpFind
Constants
- VERSION
Public Class Methods
find(uri, subject)
click to toggle source
# File lib/http_find.rb, line 8 def self.find(uri, subject) response = HttpFind::Response.new(uri) matcher = HttpFind::Matcher.new(response.body) output = HttpFind::Output.new(matcher.match(subject)) output.lines end