rltk 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/rltk.rb +16 -0
  2. data/lib/rltk/version.rb +1 -1
  3. metadata +3 -2
@@ -0,0 +1,16 @@
1
+ # Author: Chris Wailes <chris.wailes@gmail.com>
2
+ # Project: Ruby Language Toolkit
3
+ # Date: 2011/03/27
4
+ # Description: This file sets up autoloads for the RLTK module.
5
+
6
+ # The RLTK module provides a collection of useful tools for dealing with
7
+ # context-free grammars and code generation. This includes a class for
8
+ # representing CFGs, lexers, parsers, and generating code using LLVM.
9
+ module RLTK
10
+ autoload :AST, 'rltk/ast'
11
+ autoload :CFG, 'rltk/cfg'
12
+ autoload :CG, 'rltk/cg'
13
+ autoload :Lexer, 'rltk/lexer'
14
+ autoload :Parser, 'rltk/parser'
15
+ autoload :Token, 'rltk/token'
16
+ end
@@ -5,7 +5,7 @@
5
5
 
6
6
  module RLTK # :nodoc:
7
7
  # The version number of the RLTK library.
8
- VERSION = '2.1.0'
8
+ VERSION = '2.1.1'
9
9
  # The version of LLVM targeted by RLTK.
10
10
  LLVM_TARGET_VERSION = '3.0'
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rltk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-01 00:00:00.000000000 Z
12
+ date: 2012-08-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ffi
@@ -199,6 +199,7 @@ files:
199
199
  - lib/rltk/parsers/infix_calc.rb
200
200
  - lib/rltk/parsers/prefix_calc.rb
201
201
  - lib/rltk/version.rb
202
+ - lib/rltk.rb
202
203
  - test/tc_ast.rb
203
204
  - test/tc_token.rb
204
205
  - test/tc_cfg.rb