canzea 0.1.151 → 0.1.152
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/canzea/version.rb +1 -1
- data/lib/commands/push-config.rb +14 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03d635811dcefa185678e069467383aa4c9c50dd
|
4
|
+
data.tar.gz: 3725b023ad1df464f8c48dec3566ed0f5cf6c310
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2648f2015e0f827ee156fbda9626927813947c84b647e2e8e5e47172490d20f9d14a1f0a7975c4819e202c8b704a06a4e59d935bf73871d69fa19c6f969d3bb2
|
7
|
+
data.tar.gz: 6c3910e3a816e6e27f20bd4102107d2d8eae528797e8378b4bd65358107f4f8db2e3c8095ade77f14f6b7187ced5e2c76f569da69ae101b9770d22862c526272
|
data/lib/canzea/version.rb
CHANGED
data/lib/commands/push-config.rb
CHANGED
@@ -169,16 +169,20 @@ class PushConfig
|
|
169
169
|
|
170
170
|
g = Git.init(folder)
|
171
171
|
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
172
|
+
begin
|
173
|
+
g.chdir do
|
174
|
+
g.status.changed.each do |file|
|
175
|
+
count = count +1
|
176
|
+
end
|
177
|
+
g.status.added.each do |file|
|
178
|
+
count = count +1
|
179
|
+
end
|
180
|
+
g.status.deleted.each do |file|
|
181
|
+
count = count +1
|
182
|
+
end
|
183
|
+
end
|
184
|
+
rescue => exception_ignore
|
185
|
+
count = 1
|
182
186
|
end
|
183
187
|
|
184
188
|
if count == 0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: canzea
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.152
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Canzea Technologies
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-11-
|
11
|
+
date: 2017-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|