right_develop 2.1.0 → 2.1.1
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/lib/right_develop/parsers/xml_post_parser.rb +1 -1
- data/right_develop.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.1.
|
|
1
|
+
2.1.1
|
|
@@ -108,7 +108,7 @@ module RightDevelop::Parsers
|
|
|
108
108
|
if parent_key.singularize == child_key
|
|
109
109
|
# Wrap xml object in an array so it matches JSON format
|
|
110
110
|
child_node = xml_object_node[parent_key][child_key]
|
|
111
|
-
if child_node.is_a?(Hash)
|
|
111
|
+
if (child_node.is_a?(Hash) || child_node.is_a?(String))
|
|
112
112
|
child_node = [child_node]
|
|
113
113
|
end
|
|
114
114
|
xml_object_node[parent_key] = child_node
|
data/right_develop.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{right_develop}
|
|
8
|
-
s.version = "2.1.
|
|
8
|
+
s.version = "2.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Tony Spataro"]
|
|
12
|
-
s.date = %q{2014-01-
|
|
12
|
+
s.date = %q{2014-01-21}
|
|
13
13
|
s.default_executable = %q{right_develop}
|
|
14
14
|
s.description = %q{A toolkit of development tools created by RightScale.}
|
|
15
15
|
s.email = %q{support@rightscale.com}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: right_develop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 2
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 2.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 2.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tony Spataro
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2014-
|
|
18
|
+
date: 2014-02-13 00:00:00 -08:00
|
|
19
19
|
default_executable: right_develop
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|