eeml 0.0.6 → 0.0.7
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/Manifest +26 -26
- data/README +2 -0
- data/Rakefile +1 -1
- data/eeml.gemspec +8 -8
- data/lib/eeml.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +38 -38
- metadata.gz.sig +0 -0
data/Manifest
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
example.rb
|
|
2
|
-
LICENSE
|
|
3
1
|
CHANGELOG
|
|
2
|
+
LICENSE
|
|
3
|
+
Manifest
|
|
4
4
|
README
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
test/test_libxml_eeml_parser_v005.rb
|
|
9
|
-
test/test_helper.rb
|
|
10
|
-
test/data/minimal.xml
|
|
11
|
-
test/data/doc_2_expected.json
|
|
12
|
-
test/data/list.xml
|
|
13
|
-
test/data/out_empty.xml
|
|
14
|
-
test/data/complete_namespaced.xml
|
|
15
|
-
test/data/no_namespace.xml
|
|
16
|
-
test/data/difficult_tag.xml
|
|
17
|
-
test/data/doc_1.xml
|
|
18
|
-
test/data/doc_1.json
|
|
19
|
-
test/data/doc_2.xml
|
|
5
|
+
Rakefile
|
|
6
|
+
example.rb
|
|
7
|
+
lib/blank.rb
|
|
20
8
|
lib/eeml.rb
|
|
21
9
|
lib/eeml/constants.rb
|
|
10
|
+
lib/eeml/csv_parser.rb
|
|
11
|
+
lib/eeml/environment.rb
|
|
12
|
+
lib/eeml/exceptions.rb
|
|
22
13
|
lib/eeml/json_environment_parser_v005.rb
|
|
23
|
-
lib/eeml/
|
|
24
|
-
lib/eeml/parser_registry.rb
|
|
14
|
+
lib/eeml/json_output.rb
|
|
25
15
|
lib/eeml/libxml_eeml_output_v005.rb
|
|
26
16
|
lib/eeml/libxml_eeml_parser_v005.rb
|
|
27
|
-
lib/eeml/
|
|
28
|
-
lib/eeml/
|
|
29
|
-
lib/eeml/json_output.rb
|
|
30
|
-
lib/eeml/environment.rb
|
|
31
|
-
lib/blank.rb
|
|
17
|
+
lib/eeml/output_registry.rb
|
|
18
|
+
lib/eeml/parser_registry.rb
|
|
32
19
|
schemas/eeml/005.xsd
|
|
33
|
-
|
|
34
|
-
|
|
20
|
+
test/data/complete_namespaced.xml
|
|
21
|
+
test/data/difficult_tag.xml
|
|
22
|
+
test/data/doc_1.json
|
|
23
|
+
test/data/doc_1.xml
|
|
24
|
+
test/data/doc_2.xml
|
|
25
|
+
test/data/doc_2_expected.json
|
|
26
|
+
test/data/list.xml
|
|
27
|
+
test/data/minimal.xml
|
|
28
|
+
test/data/no_namespace.xml
|
|
29
|
+
test/data/out_empty.xml
|
|
30
|
+
test/libxml_test_helper.rb
|
|
31
|
+
test/test_environment.rb
|
|
32
|
+
test/test_helper.rb
|
|
33
|
+
test/test_libxml_eeml_parser_v005.rb
|
|
34
|
+
test/test_libxml_test_helper.rb
|
data/README
CHANGED
|
@@ -6,3 +6,5 @@
|
|
|
6
6
|
|
|
7
7
|
Library for simplifying the creation and manipulation of EEML documents, primarily intended for use with pachube.com. Provides parsing of EEML documents into
|
|
8
8
|
ruby objects that can be used programmatically. Also provides parsing and output of the JSON format used by pachube.com.
|
|
9
|
+
|
|
10
|
+
== USAGE
|
data/Rakefile
CHANGED
data/eeml.gemspec
CHANGED
|
@@ -2,21 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{eeml}
|
|
5
|
-
s.version = "0.0.
|
|
5
|
+
s.version = "0.0.7"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Neill Bogie, Sam Mulube"]
|
|
9
9
|
s.cert_chain = ["/home/sam/.gem/gem-public_cert.pem"]
|
|
10
|
-
s.date = %q{2009-
|
|
10
|
+
s.date = %q{2009-09-29}
|
|
11
11
|
s.description = %q{Simple little library for programmatically manipulating EEML documents, in particular this library is designed to work with the Pachube web service.}
|
|
12
12
|
s.email = %q{sam.mulube@gmail.com}
|
|
13
|
-
s.extra_rdoc_files = ["
|
|
14
|
-
s.files = ["
|
|
13
|
+
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README", "lib/blank.rb", "lib/eeml.rb", "lib/eeml/constants.rb", "lib/eeml/csv_parser.rb", "lib/eeml/environment.rb", "lib/eeml/exceptions.rb", "lib/eeml/json_environment_parser_v005.rb", "lib/eeml/json_output.rb", "lib/eeml/libxml_eeml_output_v005.rb", "lib/eeml/libxml_eeml_parser_v005.rb", "lib/eeml/output_registry.rb", "lib/eeml/parser_registry.rb"]
|
|
14
|
+
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README", "Rakefile", "example.rb", "lib/blank.rb", "lib/eeml.rb", "lib/eeml/constants.rb", "lib/eeml/csv_parser.rb", "lib/eeml/environment.rb", "lib/eeml/exceptions.rb", "lib/eeml/json_environment_parser_v005.rb", "lib/eeml/json_output.rb", "lib/eeml/libxml_eeml_output_v005.rb", "lib/eeml/libxml_eeml_parser_v005.rb", "lib/eeml/output_registry.rb", "lib/eeml/parser_registry.rb", "schemas/eeml/005.xsd", "test/data/complete_namespaced.xml", "test/data/difficult_tag.xml", "test/data/doc_1.json", "test/data/doc_1.xml", "test/data/doc_2.xml", "test/data/doc_2_expected.json", "test/data/list.xml", "test/data/minimal.xml", "test/data/no_namespace.xml", "test/data/out_empty.xml", "test/libxml_test_helper.rb", "test/test_environment.rb", "test/test_helper.rb", "test/test_libxml_eeml_parser_v005.rb", "test/test_libxml_test_helper.rb", "eeml.gemspec"]
|
|
15
15
|
s.homepage = %q{}
|
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Eeml", "--main", "README"]
|
|
17
17
|
s.require_paths = ["lib"]
|
|
18
18
|
s.rubyforge_project = %q{eeml}
|
|
19
|
-
s.rubygems_version = %q{1.3.
|
|
19
|
+
s.rubygems_version = %q{1.3.5}
|
|
20
20
|
s.signing_key = %q{/home/sam/.gem/gem-private_key.pem}
|
|
21
21
|
s.summary = %q{Simple little library for programmatically manipulating EEML documents.}
|
|
22
22
|
s.test_files = ["test/test_environment.rb", "test/test_libxml_test_helper.rb", "test/test_libxml_eeml_parser_v005.rb", "test/test_helper.rb"]
|
|
@@ -27,18 +27,18 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
|
|
28
28
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
29
29
|
s.add_runtime_dependency(%q<libxml-ruby>, [">= 0", "= 1.1.3"])
|
|
30
|
-
s.add_runtime_dependency(%q<json>, [">= 0", "= 1.1.
|
|
30
|
+
s.add_runtime_dependency(%q<json>, [">= 0", "= 1.1.9"])
|
|
31
31
|
s.add_development_dependency(%q<rake>, [">= 0", "= 0.8.4"])
|
|
32
32
|
s.add_development_dependency(%q<mocha>, [">= 0", "= 0.9.6"])
|
|
33
33
|
else
|
|
34
34
|
s.add_dependency(%q<libxml-ruby>, [">= 0", "= 1.1.3"])
|
|
35
|
-
s.add_dependency(%q<json>, [">= 0", "= 1.1.
|
|
35
|
+
s.add_dependency(%q<json>, [">= 0", "= 1.1.9"])
|
|
36
36
|
s.add_dependency(%q<rake>, [">= 0", "= 0.8.4"])
|
|
37
37
|
s.add_dependency(%q<mocha>, [">= 0", "= 0.9.6"])
|
|
38
38
|
end
|
|
39
39
|
else
|
|
40
40
|
s.add_dependency(%q<libxml-ruby>, [">= 0", "= 1.1.3"])
|
|
41
|
-
s.add_dependency(%q<json>, [">= 0", "= 1.1.
|
|
41
|
+
s.add_dependency(%q<json>, [">= 0", "= 1.1.9"])
|
|
42
42
|
s.add_dependency(%q<rake>, [">= 0", "= 0.8.4"])
|
|
43
43
|
s.add_dependency(%q<mocha>, [">= 0", "= 0.9.6"])
|
|
44
44
|
end
|
data/lib/eeml.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eeml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Neill Bogie, Sam Mulube
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
yyRwZdVyDdsafg==
|
|
31
31
|
-----END CERTIFICATE-----
|
|
32
32
|
|
|
33
|
-
date: 2009-
|
|
33
|
+
date: 2009-09-29 00:00:00 +01:00
|
|
34
34
|
default_executable:
|
|
35
35
|
dependencies:
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
@@ -57,7 +57,7 @@ dependencies:
|
|
|
57
57
|
version: "0"
|
|
58
58
|
- - "="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 1.1.
|
|
60
|
+
version: 1.1.9
|
|
61
61
|
version:
|
|
62
62
|
- !ruby/object:Gem::Dependency
|
|
63
63
|
name: rake
|
|
@@ -92,56 +92,56 @@ executables: []
|
|
|
92
92
|
extensions: []
|
|
93
93
|
|
|
94
94
|
extra_rdoc_files:
|
|
95
|
-
- LICENSE
|
|
96
95
|
- CHANGELOG
|
|
96
|
+
- LICENSE
|
|
97
97
|
- README
|
|
98
|
+
- lib/blank.rb
|
|
98
99
|
- lib/eeml.rb
|
|
99
100
|
- lib/eeml/constants.rb
|
|
101
|
+
- lib/eeml/csv_parser.rb
|
|
102
|
+
- lib/eeml/environment.rb
|
|
103
|
+
- lib/eeml/exceptions.rb
|
|
100
104
|
- lib/eeml/json_environment_parser_v005.rb
|
|
101
|
-
- lib/eeml/
|
|
102
|
-
- lib/eeml/parser_registry.rb
|
|
105
|
+
- lib/eeml/json_output.rb
|
|
103
106
|
- lib/eeml/libxml_eeml_output_v005.rb
|
|
104
107
|
- lib/eeml/libxml_eeml_parser_v005.rb
|
|
105
|
-
- lib/eeml/
|
|
106
|
-
- lib/eeml/
|
|
107
|
-
- lib/eeml/json_output.rb
|
|
108
|
-
- lib/eeml/environment.rb
|
|
109
|
-
- lib/blank.rb
|
|
108
|
+
- lib/eeml/output_registry.rb
|
|
109
|
+
- lib/eeml/parser_registry.rb
|
|
110
110
|
files:
|
|
111
|
-
- example.rb
|
|
112
|
-
- LICENSE
|
|
113
111
|
- CHANGELOG
|
|
112
|
+
- LICENSE
|
|
113
|
+
- Manifest
|
|
114
114
|
- README
|
|
115
|
-
-
|
|
116
|
-
-
|
|
117
|
-
-
|
|
118
|
-
- test/test_libxml_eeml_parser_v005.rb
|
|
119
|
-
- test/test_helper.rb
|
|
120
|
-
- test/data/minimal.xml
|
|
121
|
-
- test/data/doc_2_expected.json
|
|
122
|
-
- test/data/list.xml
|
|
123
|
-
- test/data/out_empty.xml
|
|
124
|
-
- test/data/complete_namespaced.xml
|
|
125
|
-
- test/data/no_namespace.xml
|
|
126
|
-
- test/data/difficult_tag.xml
|
|
127
|
-
- test/data/doc_1.xml
|
|
128
|
-
- test/data/doc_1.json
|
|
129
|
-
- test/data/doc_2.xml
|
|
115
|
+
- Rakefile
|
|
116
|
+
- example.rb
|
|
117
|
+
- lib/blank.rb
|
|
130
118
|
- lib/eeml.rb
|
|
131
119
|
- lib/eeml/constants.rb
|
|
120
|
+
- lib/eeml/csv_parser.rb
|
|
121
|
+
- lib/eeml/environment.rb
|
|
122
|
+
- lib/eeml/exceptions.rb
|
|
132
123
|
- lib/eeml/json_environment_parser_v005.rb
|
|
133
|
-
- lib/eeml/
|
|
134
|
-
- lib/eeml/parser_registry.rb
|
|
124
|
+
- lib/eeml/json_output.rb
|
|
135
125
|
- lib/eeml/libxml_eeml_output_v005.rb
|
|
136
126
|
- lib/eeml/libxml_eeml_parser_v005.rb
|
|
137
|
-
- lib/eeml/
|
|
138
|
-
- lib/eeml/
|
|
139
|
-
- lib/eeml/json_output.rb
|
|
140
|
-
- lib/eeml/environment.rb
|
|
141
|
-
- lib/blank.rb
|
|
127
|
+
- lib/eeml/output_registry.rb
|
|
128
|
+
- lib/eeml/parser_registry.rb
|
|
142
129
|
- schemas/eeml/005.xsd
|
|
143
|
-
-
|
|
144
|
-
-
|
|
130
|
+
- test/data/complete_namespaced.xml
|
|
131
|
+
- test/data/difficult_tag.xml
|
|
132
|
+
- test/data/doc_1.json
|
|
133
|
+
- test/data/doc_1.xml
|
|
134
|
+
- test/data/doc_2.xml
|
|
135
|
+
- test/data/doc_2_expected.json
|
|
136
|
+
- test/data/list.xml
|
|
137
|
+
- test/data/minimal.xml
|
|
138
|
+
- test/data/no_namespace.xml
|
|
139
|
+
- test/data/out_empty.xml
|
|
140
|
+
- test/libxml_test_helper.rb
|
|
141
|
+
- test/test_environment.rb
|
|
142
|
+
- test/test_helper.rb
|
|
143
|
+
- test/test_libxml_eeml_parser_v005.rb
|
|
144
|
+
- test/test_libxml_test_helper.rb
|
|
145
145
|
- eeml.gemspec
|
|
146
146
|
has_rdoc: true
|
|
147
147
|
homepage: ""
|
|
@@ -172,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
172
172
|
requirements: []
|
|
173
173
|
|
|
174
174
|
rubyforge_project: eeml
|
|
175
|
-
rubygems_version: 1.3.
|
|
175
|
+
rubygems_version: 1.3.5
|
|
176
176
|
signing_key:
|
|
177
177
|
specification_version: 3
|
|
178
178
|
summary: Simple little library for programmatically manipulating EEML documents.
|
metadata.gz.sig
CHANGED
|
Binary file
|