xml-fu 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ script: "bundle exec rake"
2
+ language: ruby
3
+ rvm:
4
+ - ree
5
+ - 1.8.7
6
+ - 1.9.2
7
+ - 2.0.0
8
+ - rbx-18mode
9
+ - rbx-19mode
10
+ - jruby-18mode
11
+ - jruby-19mode
@@ -1,5 +1,9 @@
1
1
  ## Changes by Version
2
2
 
3
+ ### 0.1.9
4
+
5
+ * Added license to gemspec
6
+
3
7
  ### 0.1.8
4
8
 
5
9
  * Fixed XmlFu.symbol_conversion_algorithm functionality
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # XmlFu [![Build Status](http://travis-ci.org/CITguy/xml-fu.png)](http://travis-ci.org/CITguy/xml-fu)
1
+ # XmlFu [![Build Status](https://travis-ci.org/CITguy/xml-fu.png?branch=master)](https://travis-ci.org/CITguy/xml-fu)
2
+
3
+ *license:* MIT
2
4
 
3
5
  Convert Ruby Hashes to XML
4
6
 
@@ -1,3 +1,3 @@
1
1
  module XmlFu
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
@@ -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: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 8
10
- version: 0.1.8
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, \n XmlFu is designed to require no meta tagging for \n node attributes and content. (i.e. no :attributes! and no :order!)\n "
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-yml
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
 
@@ -1,8 +0,0 @@
1
- script: "rake"
2
- language: ruby
3
- rvm:
4
- - 1.8.7
5
- - 1.9.2
6
- - ree
7
- - rbx
8
- - jruby