Class: Rundoc::CodeCommand::Website::Navigate
Constant Summary
NEWLINE
Instance Attribute Summary
#command, #contents, #keyword, #original_args, #render_command, #render_result
Instance Method Summary
collapse
#push
Constructor Details
#initialize(name:) ⇒ Navigate
Returns a new instance of Navigate.
Instance Method Details
#call(env = {}) ⇒ Object
12
13
14
15
16
|
# File 'lib/rundoc/code_command/website/navigate.rb', line 12
def call(env = {})
puts "website.navigate [#{@name}]: #{contents}"
@driver.safe_eval(contents, env)
""
end
|
#hidden? ⇒ Boolean
18
19
20
|
# File 'lib/rundoc/code_command/website/navigate.rb', line 18
def hidden?
true
end
|
#not_hidden? ⇒ Boolean
22
23
24
|
# File 'lib/rundoc/code_command/website/navigate.rb', line 22
def not_hidden?
!hidden?
end
|
#to_md(env = {}) ⇒ Object
8
9
10
|
# File 'lib/rundoc/code_command/website/navigate.rb', line 8
def to_md(env = {})
""
end
|