1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-05 14:57:30 +01:00

missed a file, see r12815

git-svn-id: file:///home/svn/framework3/trunk@12836 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
James Lee 2011-06-03 00:15:08 +00:00
parent d1b971c5f2
commit 0281b8c334

14
lib/rkelly.rb Normal file
View File

@ -0,0 +1,14 @@
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