Class: Opal::RSpec::Runner::LegacyServerProxy

Inherits:
Object
  • Object
show all
Defined in:
lib/opal/rspec/runner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeLegacyServerProxy

Returns a new instance of LegacyServerProxy.



71
72
73
# File 'lib/opal/rspec/runner.rb', line 71

def initialize
  @paths ||= Set.new
end

Instance Attribute Details

#debugObject

noop options



85
86
87
# File 'lib/opal/rspec/runner.rb', line 85

def debug
  @debug
end

#index_pathObject

Returns the value of attribute index_path.



82
83
84
# File 'lib/opal/rspec/runner.rb', line 82

def index_path
  @index_path
end

Instance Method Details

#append_path(path) ⇒ Object



75
76
77
# File 'lib/opal/rspec/runner.rb', line 75

def append_path(path)
  @paths << path
end

#to_cli_optionsObject



87
88
89
90
91
92
93
# File 'lib/opal/rspec/runner.rb', line 87

def to_cli_options
  options = []
  @paths.map do |path|
    options << "-I#{path.shellescape}"
  end
  options
end