orientepodspecpush 0.2.3 → 0.2.4
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/lib/orientepodspecpush.rb +6 -4
- data/lib/orientepodspecpush/version.rb +1 -1
- 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: 5ba1a8d1bcf75644ae68cf699f690598011d544076a1735936582b9201e1365a
|
|
4
|
+
data.tar.gz: 4d3fd06e823bf169b8cb5913f91dcabf7e632307b3bb239ccc44b7b85af409ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4c2500ba12684ebc31cd9619f7762550725872d148d0cf49452a4c46e4ffd40fefa293b6389d79d0364b29571ebd893d5708d3506afee76bf07b9f277c83b7b
|
|
7
|
+
data.tar.gz: 033e9e0849f66c90f6b3e36a1ea938aa04c264428fa4ec4f56fee6f4b4a80bf2ab07c720564eab9f6ed457bebf9458ecb738d2bce94fa1664b77b617d5cac13d
|
data/lib/orientepodspecpush.rb
CHANGED
|
@@ -38,6 +38,7 @@ module Orientepodspecpush
|
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
def ensureGitClean
|
|
41
|
+
puts "test:ensureGitClean".blue
|
|
41
42
|
if `git status --porcelain`.length != 0
|
|
42
43
|
puts "Repo is not clean; will not push new version".red
|
|
43
44
|
exit
|
|
@@ -189,10 +190,11 @@ module Orientepodspecpush
|
|
|
189
190
|
opt :noPackage, "If set, no need to package"
|
|
190
191
|
end
|
|
191
192
|
|
|
192
|
-
puts "
|
|
193
|
-
puts "
|
|
194
|
-
puts "
|
|
195
|
-
puts "
|
|
193
|
+
puts "lint:#{opts[:lint]}"
|
|
194
|
+
puts "package:#{opts[:package]}"
|
|
195
|
+
puts "push:#{opts[:push]}"
|
|
196
|
+
puts "noPackage:#{opts[:noPackage]}"
|
|
197
|
+
puts "version:#{opts[:version]}"
|
|
196
198
|
# Need these two
|
|
197
199
|
Trollop::die :specRepo, "Spec Repo must be provided" if opts[:specRepo] == nil
|
|
198
200
|
Trollop::die :workspace, "Workspace path must be provided" if opts[:workspace] == nil
|