aboutsummaryrefslogtreecommitdiff
path: root/runtime/Ruby/lib/antlr3/template/group-file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/Ruby/lib/antlr3/template/group-file.rb')
-rw-r--r--runtime/Ruby/lib/antlr3/template/group-file.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/runtime/Ruby/lib/antlr3/template/group-file.rb b/runtime/Ruby/lib/antlr3/template/group-file.rb
new file mode 100644
index 0000000..f3dd4eb
--- /dev/null
+++ b/runtime/Ruby/lib/antlr3/template/group-file.rb
@@ -0,0 +1,20 @@
+#!/usr/bin/ruby
+# encoding: utf-8
+
+=begin ::about::
+author: Kyle Yetter <kcy5b@yahoo.com>
+created on: March 19, 2010
+purpose: Loads the ANTLR recognition code for ANTLR Template Group files
+=end
+
+require 'antlr3/template/group-file-lexer'
+require 'antlr3/template/group-file-parser'
+
+module ANTLR3
+module Template
+class Group
+ Lexer = GroupFile::Lexer
+ Parser = GroupFile::Parser
+end
+end
+end