scout-gear 10.12.1 → 10.12.2
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 +4 -4
- data/VERSION +1 -1
- data/lib/scout/workflow.rb +1 -1
- data/scout-gear.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 72599e4b76e2a08e984f458d75d268fc566c59a91132607ff1dba7ea7dbffe29
|
|
4
|
+
data.tar.gz: 26f292e80a00565488becc8cbdc4ca7d7b1821571c8b6c8d4ae7dde5e46710e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b28d223415b0dbb4e4f6d1de498f3e00811c3f79c4038ee3d44b7e436b5d815d2ddbe69892b9ca6072c44344a175a0332c5d3ee522b13decdf7f8ed21f9712b5
|
|
7
|
+
data.tar.gz: 94c3d47de97f1aa38d1bc298066882d683e845d35d39e8ce8b9a601fda752f5fc9bb1a516c4bcd1f58a0a3ccece9cd1c5d335d55a844f52cc307fbaffd079c7c
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
10.12.
|
|
1
|
+
10.12.2
|
data/lib/scout/workflow.rb
CHANGED
|
@@ -107,7 +107,7 @@ module Workflow
|
|
|
107
107
|
Log.warn "Cloning #{ repo }"
|
|
108
108
|
Misc.insist do
|
|
109
109
|
`git clone "#{repo}" #{ Misc.snake_case(workflow) }`
|
|
110
|
-
raise unless $?.success?
|
|
110
|
+
raise "Workflow #{workflow} not found and could not install it" unless $?.success?
|
|
111
111
|
end
|
|
112
112
|
Log.warn "Initializing and updating submodules for #{repo}. You might be prompted for passwords."
|
|
113
113
|
Misc.in_dir(Misc.snake_case(workflow)) do
|
data/scout-gear.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: scout-gear 10.12.
|
|
5
|
+
# stub: scout-gear 10.12.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "scout-gear".freeze
|
|
9
|
-
s.version = "10.12.
|
|
9
|
+
s.version = "10.12.2".freeze
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|