class Website::Parameters

Attributes

base_url[R]
css_path[R]
current_url[R]
html_field[R]

Public Class Methods

new(base_url, current_url, css_path, html_field) click to toggle source
# File lib/website/parameters.rb, line 6
def initialize(base_url, current_url, css_path, html_field)
  @base_url = base_url
  @current_url = current_url
  @css_path = css_path
  @html_field = html_field
end