Class: ExecJS::ExternalRuntime

Inherits:
Object
  • Object
show all
Defined in:
lib/execjs/external_runtime.rb

Defined Under Namespace

Classes: Context

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ExternalRuntime

Returns a new instance of ExternalRuntime.



66
67
68
69
70
71
72
73
74
# File 'lib/execjs/external_runtime.rb', line 66

def initialize(options)
  @name        = options[:name]
  @command     = options[:command]
  @runner_path = options[:runner_path]
  @test_args   = options[:test_args]
  @test_match  = options[:test_match]
  @conversion  = options[:conversion]
  @binary      = locate_binary
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



64
65
66
# File 'lib/execjs/external_runtime.rb', line 64

def name
  @name
end

Instance Method Details

#available?Boolean

Returns:

  • (Boolean)


90
91
92
93
# File 'lib/execjs/external_runtime.rb', line 90

def available?
  require "multi_json"
  @binary ? true : false
end

#compile(source) ⇒ Object



86
87
88
# File 'lib/execjs/external_runtime.rb', line 86

def compile(source)
  Context.new(self, source)
end

#eval(source) ⇒ Object



81
82
83
84
# File 'lib/execjs/external_runtime.rb', line 81

def eval(source)
  context = Context.new(self)
  context.eval(source)
end

#exec(source) ⇒ Object



76
77
78
79
# File 'lib/execjs/external_runtime.rb', line 76

def exec(source)
  context = Context.new(self)
  context.exec(source)
end