maestro-plugin-rake-tasks 1.0.10 → 1.0.11
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7a856fdc93cff2ce45d8c2ce0ac2cc1639643ff
|
|
4
|
+
data.tar.gz: d7c18f7f8fe58d1553eecb622335b9fc9c1a2ebe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0803c1df3f427fd1e3b447d1b329255020f9ed5cd8eb95e5ea7bd67a649ec9909abb4e90ef8652f5f9e99ecf2d96dbaf7cddbad5bb8e72059f25be9f8502cb9a
|
|
7
|
+
data.tar.gz: f46af6d41f102b953e2e0c714387dd31c0f2d4431a59c5c81cb346188dd2b1f1c46b4717fa2706da3571b6cf38cc7c480280c61d198a2bedb4162a468aa2574f
|
|
@@ -129,10 +129,11 @@ module Maestro
|
|
|
129
129
|
manifest = JSON.parse(IO.read(@manifest_template_path))
|
|
130
130
|
if manifest.instance_of? Array
|
|
131
131
|
manifest.each { |m| m['version'] = manifest_version }
|
|
132
|
-
elsif !manifest['tasks'].nil? and manifest['tasks'].instance_of? Array
|
|
133
|
-
manifest['tasks'].each { |m| m['version'] = manifest_version }
|
|
134
132
|
else
|
|
135
133
|
manifest['version'] = manifest_version
|
|
134
|
+
if !manifest['tasks'].nil? and manifest['tasks'].instance_of? Array
|
|
135
|
+
manifest['tasks'].each { |m| m['version'] = manifest_version }
|
|
136
|
+
end
|
|
136
137
|
end
|
|
137
138
|
|
|
138
139
|
File.open('manifest.json','w'){ |f| f.write(JSON.pretty_generate(manifest)) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: maestro-plugin-rake-tasks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Etienne Pelletier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
183
183
|
version: '0'
|
|
184
184
|
requirements: []
|
|
185
185
|
rubyforge_project:
|
|
186
|
-
rubygems_version: 2.
|
|
186
|
+
rubygems_version: 2.1.9
|
|
187
187
|
signing_key:
|
|
188
188
|
specification_version: 4
|
|
189
189
|
summary: A collection of Rake tasks used to package Maetro Ruby plugins
|