blm 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/blm.gemspec +1 -1
- data/lib/blm.rb +3 -5
- data/spec/blm_spec.rb +6 -0
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/blm.gemspec
CHANGED
data/lib/blm.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module BLM
|
2
|
-
|
2
|
+
class Document
|
3
3
|
def initialize(source)
|
4
4
|
@source = source
|
5
5
|
end
|
@@ -49,11 +49,9 @@ module BLM
|
|
49
49
|
end
|
50
50
|
end
|
51
51
|
|
52
|
-
class Document
|
53
|
-
include Parser
|
54
|
-
end
|
55
|
-
|
56
52
|
class Row
|
53
|
+
attr_accessor :attributes
|
54
|
+
|
57
55
|
def initialize(hash)
|
58
56
|
@attributes = hash
|
59
57
|
end
|
data/spec/blm_spec.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 4
|
9
|
+
version: 0.1.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Robert May
|
@@ -112,7 +112,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
112
112
|
requirements:
|
113
113
|
- - ">="
|
114
114
|
- !ruby/object:Gem::Version
|
115
|
-
hash: -
|
115
|
+
hash: -967802719
|
116
116
|
segments:
|
117
117
|
- 0
|
118
118
|
version: "0"
|