polyrex-parser 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/polyrex-parser.rb +6 -3
  2. metadata +1 -1
@@ -9,6 +9,12 @@ class PolyrexParser
9
9
  def initialize(s)
10
10
  @a = parse(s)
11
11
  end
12
+
13
+ def to_a()
14
+ @a
15
+ end
16
+
17
+ private
12
18
 
13
19
  def parse(s)
14
20
 
@@ -43,7 +49,4 @@ class PolyrexParser
43
49
  [root_name, "", {}, [*summary], ['records', "",{}, *records]]
44
50
  end
45
51
 
46
- def to_a()
47
- @a
48
- end
49
52
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polyrex-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors: []
7
7