Class: ExecJS::ExternalRuntime
- Inherits:
-
Object
- Object
- ExecJS::ExternalRuntime
- Defined in:
- lib/execjs/external_runtime.rb
Defined Under Namespace
Classes: Context
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #available? ⇒ Boolean
- #compile(source) ⇒ Object
- #eval(source) ⇒ Object
- #exec(source) ⇒ Object
-
#initialize(options) ⇒ ExternalRuntime
constructor
A new instance of ExternalRuntime.
Constructor Details
#initialize(options) ⇒ ExternalRuntime
Returns a new instance of ExternalRuntime.
89 90 91 92 93 94 95 96 97 |
# File 'lib/execjs/external_runtime.rb', line 89 def initialize() @name = [:name] @command = [:command] @runner_path = [:runner_path] @test_args = [:test_args] @test_match = [:test_match] @encoding = [:encoding] @binary = locate_binary end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
87 88 89 |
# File 'lib/execjs/external_runtime.rb', line 87 def name @name end |
Instance Method Details
#available? ⇒ Boolean
113 114 115 116 |
# File 'lib/execjs/external_runtime.rb', line 113 def available? require "multi_json" @binary ? true : false end |
#compile(source) ⇒ Object
109 110 111 |
# File 'lib/execjs/external_runtime.rb', line 109 def compile(source) Context.new(self, source) end |