class Runestone::WebSearch::PartialMatch

Attributes

end_index[RW]
start_index[RW]
substitution[RW]

Public Class Methods

new(start_index, end_index, substitution) click to toggle source
# File lib/runestone/web_search.rb, line 17
def initialize(start_index, end_index, substitution)
  @start_index = start_index
  @end_index = end_index
  @substitution = substitution
end