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
# File 'lib/puppeteer/launcher/launch_options.rb', line 34

def initialize(options)
  @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

#envObject (readonly)

Returns the value of attribute env.



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

def env
  @env
end

#executable_pathObject (readonly)

Returns the value of attribute executable_path.



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

def executable_path
  @executable_path
end

#ignore_default_argsObject (readonly)

Returns the value of attribute ignore_default_args.



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

def ignore_default_args
  @ignore_default_args
end

#timeoutObject (readonly)

Returns the value of attribute timeout.



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

def timeout
  @timeout
end

Instance Method Details

#dumpio?Boolean

Returns:

  • (Boolean)


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

def dumpio?
  @dumpio
end

#handle_SIGHUP?Boolean

Returns:

  • (Boolean)


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

def handle_SIGHUP?
  @handle_SIGHUP
end

#handle_SIGINT?Boolean

Returns:

  • (Boolean)


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

def handle_SIGINT?
  @handle_SIGINT
end

#handle_SIGTERM?Boolean

Returns:

  • (Boolean)


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

def handle_SIGTERM?
  @handle_SIGTERM
end

#pipe?Boolean

Returns:

  • (Boolean)


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

def pipe?
  @pipe
end