Files
metasploit-gs/lib/rkelly.rb
T
James Lee 0281b8c334 missed a file, see r12815
git-svn-id: file:///home/svn/framework3/trunk@12836 4d416f70-5f16-0410-b530-b9f4589650da
2011-06-03 00:15:08 +00:00

15 lines
266 B
Ruby

require 'rkelly/constants'
require 'rkelly/visitable'
require 'rkelly/visitors'
require 'rkelly/parser'
require 'rkelly/runtime'
require 'rkelly/syntax_error'
module RKelly
class << self
def parse *args
RKelly::Parser.new.parse(*args)
end
end
end