Class: Opal::RSpec::Runner::LegacyServerProxy
- Inherits:
-
Object
- Object
- Opal::RSpec::Runner::LegacyServerProxy
- Defined in:
- lib/opal/rspec/runner.rb
Instance Attribute Summary collapse
-
#debug ⇒ Object
noop options.
-
#index_path ⇒ Object
Returns the value of attribute index_path.
Instance Method Summary collapse
- #append_path(path) ⇒ Object
-
#initialize ⇒ LegacyServerProxy
constructor
A new instance of LegacyServerProxy.
- #to_cli_options ⇒ Object
Constructor Details
#initialize ⇒ LegacyServerProxy
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
#debug ⇒ Object
noop options
85 86 87 |
# File 'lib/opal/rspec/runner.rb', line 85 def debug @debug end |
#index_path ⇒ Object
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_options ⇒ Object
87 88 89 90 91 92 93 |
# File 'lib/opal/rspec/runner.rb', line 87 def = [] @paths.map do |path| << "-I#{path.shellescape}" end end |