lector 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/lib/lector.rb +3 -2
- data/lib/lector/version.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
data/lib/lector.rb
CHANGED
@@ -2,8 +2,9 @@ require 'citrus'
|
|
2
2
|
require 'lector/types'
|
3
3
|
|
4
4
|
module Lector
|
5
|
-
|
6
|
-
|
5
|
+
['digits', 'reader'].each do |grammar|
|
6
|
+
Citrus.load(File.join(File.dirname(__FILE__), 'lector', grammar), :force => true)
|
7
|
+
end
|
7
8
|
end
|
8
9
|
|
9
10
|
module Lector
|
data/lib/lector/version.rb
CHANGED