class Opal::RSpec::Runner::LegacyServerProxy

Attributes

debug[RW]

noop options

index_path[R]

Public Class Methods

new() click to toggle source
# File lib/opal/rspec/runner.rb, line 45
def initialize
  @paths ||= Set.new
end

Public Instance Methods

append_path(path) click to toggle source
# File lib/opal/rspec/runner.rb, line 49
def append_path(path)
  @paths << path
end
index_path=(path) click to toggle source
# File lib/opal/rspec/runner.rb, line 53
def index_path=path
  @index_path = path
end
to_cli_options() click to toggle source
# File lib/opal/rspec/runner.rb, line 61
def to_cli_options
  options = []
  @paths.map do |path|
    options << "-I#{path.shellescape}"
  end
  options
end