module ERLE

Constants

VERSION

Public Class Methods

parse(str) click to toggle source
# File lib/erle.rb, line 20
def self.parse(str)
  Parser.new(str).parse
end
to_ruby(str) click to toggle source
# File lib/erle.rb, line 24
def self.to_ruby(str)
  parse(str).to_ruby
end