Method: Julia::LibJulia.const_missing

Defined in:
lib/julia/init.rb

.const_missing(name) ⇒ Object



13
14
15
16
17
18
19
20
21
# File 'lib/julia/init.rb', line 13

def self.const_missing(name)
  case name
  when :JULIA_VERSION
    Julia.init
    const_get(name)
  else
    super
  end
end