Class: MSpec::Opal::Runner::PhantomJS
- Inherits:
-
Opal::Util::Command
- Object
- Opal::Util::Command
- MSpec::Opal::Runner::PhantomJS
- Defined in:
- opal/lib/mspec/opal/rake_task.rb
Instance Attribute Summary
Attributes inherited from Opal::Util::Command
Instance Method Summary collapse
-
#initialize(runner, url) ⇒ PhantomJS
constructor
A new instance of PhantomJS.
- #run ⇒ Object
Constructor Details
#initialize(runner, url) ⇒ PhantomJS
Returns a new instance of PhantomJS
80 81 82 83 84 |
# File 'opal/lib/mspec/opal/rake_task.rb', line 80 def initialize(runner, url) runner = runner.shellescape url = url.shellescape super 'phantomjs', "#{runner} #{url}", '. Please install PhantomJS' end |
Instance Method Details
#run ⇒ Object
86 87 88 |
# File 'opal/lib/mspec/opal/rake_task.rb', line 86 def run system "#{command} #{}" end |