xml-fu 0.1.8 → 0.1.9
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/.travis.yml +11 -0
- data/CHANGELOG.md +4 -0
- data/README.md +3 -1
- data/lib/xml-fu/version.rb +1 -1
- data/xml-fu.gemspec +3 -2
- metadata +7 -7
- data/.travis-yml +0 -8
data/.travis.yml
ADDED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
# XmlFu [](https://travis-ci.org/CITguy/xml-fu)
|
|
2
|
+
|
|
3
|
+
*license:* MIT
|
|
2
4
|
|
|
3
5
|
Convert Ruby Hashes to XML
|
|
4
6
|
|
data/lib/xml-fu/version.rb
CHANGED
data/xml-fu.gemspec
CHANGED
|
@@ -8,9 +8,10 @@ Gem::Specification.new do |gem|
|
|
|
8
8
|
gem.email = ["rhino.citguy@gmail.com"]
|
|
9
9
|
gem.homepage = "http://github.com/CITguy/#{gem.name}"
|
|
10
10
|
gem.summary = %q{Simple Hash/Array to XML generation}
|
|
11
|
+
gem.license = 'MIT'
|
|
11
12
|
gem.description = %q{
|
|
12
|
-
Inspired by the Gyoku gem for hash to xml conversion,
|
|
13
|
-
XmlFu is designed to require no meta tagging for
|
|
13
|
+
Inspired by the Gyoku gem for hash to xml conversion,
|
|
14
|
+
XmlFu is designed to require no meta tagging for
|
|
14
15
|
node attributes and content. (i.e. no :attributes! and no :order!)
|
|
15
16
|
}
|
|
16
17
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xml-fu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 9
|
|
10
|
+
version: 0.1.9
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Ryan Johnson
|
|
@@ -63,7 +63,7 @@ dependencies:
|
|
|
63
63
|
version: "0"
|
|
64
64
|
type: :development
|
|
65
65
|
version_requirements: *id003
|
|
66
|
-
description: "\n Inspired by the Gyoku gem for hash to xml conversion
|
|
66
|
+
description: "\n Inspired by the Gyoku gem for hash to xml conversion,\n XmlFu is designed to require no meta tagging for\n node attributes and content. (i.e. no :attributes! and no :order!)\n "
|
|
67
67
|
email:
|
|
68
68
|
- rhino.citguy@gmail.com
|
|
69
69
|
executables: []
|
|
@@ -74,7 +74,7 @@ extra_rdoc_files: []
|
|
|
74
74
|
|
|
75
75
|
files:
|
|
76
76
|
- .gitignore
|
|
77
|
-
- .travis
|
|
77
|
+
- .travis.yml
|
|
78
78
|
- .yardopts
|
|
79
79
|
- CHANGELOG.md
|
|
80
80
|
- Gemfile
|
|
@@ -97,8 +97,8 @@ files:
|
|
|
97
97
|
- spec/xmlfu_spec.rb
|
|
98
98
|
- xml-fu.gemspec
|
|
99
99
|
homepage: http://github.com/CITguy/xml-fu
|
|
100
|
-
licenses:
|
|
101
|
-
|
|
100
|
+
licenses:
|
|
101
|
+
- MIT
|
|
102
102
|
post_install_message:
|
|
103
103
|
rdoc_options: []
|
|
104
104
|
|