Class: Puppeteer::Launcher::LaunchOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/puppeteer/launcher/launch_options.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ LaunchOptions

Returns a new instance of LaunchOptions.



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/puppeteer/launcher/launch_options.rb', line 34

def initialize(options)
  @channel = options[:channel]
  @executable_path = options[:executable_path]
  @ignore_default_args = options[:ignore_default_args] || false
  @handle_SIGINT = options[:handle_SIGINT] || true
  @handle_SIGTERM = options[:handle_SIGTERM] || true
  @handle_SIGHUP = options[:handle_SIGHUP] || true
  @timeout = options[:timeout] || 30000
  @dumpio = options[:dumpio] || false
  @env = options[:env] || ENV
  @pipe = options[:pipe] || false
end

Instance Attribute Details

#channelObject (readonly)

Returns the value of attribute channel.



47
48
49
# File 'lib/puppeteer/launcher/launch_options.rb', line 47

def channel
  @channel
end

#envObject (readonly)

Returns the value of attribute env.



47
48
49
# File 'lib/puppeteer/launcher/launch_options.rb', line 47

def env
  @env
end

#executable_pathObject (readonly)

Returns the value of attribute executable_path.



47
48
49
# File 'lib/puppeteer/launcher/launch_options.rb', line 47

def executable_path
  @executable_path
end

#ignore_default_argsObject (readonly)

Returns the value of attribute ignore_default_args.



47
48
49
# File 'lib/puppeteer/launcher/launch_options.rb', line 47

def ignore_default_args
  @ignore_default_args
end

#timeoutObject (readonly)

Returns the value of attribute timeout.



47
48
49
# File 'lib/puppeteer/launcher/launch_options.rb', line 47

def timeout
  @timeout
end

Instance Method Details

#dumpio?Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/puppeteer/launcher/launch_options.rb', line 61

def dumpio?
  @dumpio
end

#handle_SIGHUP?Boolean

Returns:

  • (Boolean)


57
58
59
# File 'lib/puppeteer/launcher/launch_options.rb', line 57

def handle_SIGHUP?
  @handle_SIGHUP
end

#handle_SIGINT?Boolean

Returns:

  • (Boolean)


49
50
51
# File 'lib/puppeteer/launcher/launch_options.rb', line 49

def handle_SIGINT?
  @handle_SIGINT
end

#handle_SIGTERM?Boolean

Returns:

  • (Boolean)


53
54
55
# File 'lib/puppeteer/launcher/launch_options.rb', line 53

def handle_SIGTERM?
  @handle_SIGTERM
end

#pipe?Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/puppeteer/launcher/launch_options.rb', line 65

def pipe?
  @pipe
end