class Corundum::BrowserTask

Public Instance Methods

default_configuration(parent) click to toggle source
Calls superclass method
# File lib/corundum/browser-task.rb, line 9
def default_configuration(parent)
  super
  self.browser = parent.browser
end
resolve_configuration() click to toggle source
Calls superclass method
# File lib/corundum/browser-task.rb, line 18
def resolve_configuration
  super
  self.command = cmd(browser, index_html)
end
task_args() click to toggle source
# File lib/corundum/browser-task.rb, line 14
def task_args
  [{task_name => index_html}]
end