fanforce-factory 0.4.0 → 0.4.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.
- checksums.yaml +8 -8
- data/lib/fanforce/factory/commands.rb +1 -1
- data/lib/fanforce/factory/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Yjk1MjlmM2I1OTQxZmE0ZTEzYjEwMTAzNDFmNGZjYjI3NjY5ZGZjOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTY4NGJmOWM5MzUzY2Q3NThkZGQ2YWEzNmRiNDU1ZTc5ODc2ZTc5YQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDAyOTI4YzJjYjUxMDdhZjA3MmQ0MWUzNzBlZTUxNjkzMmFjZmM0YTY2YTQ1
|
10
|
+
Nzk1M2M0NTU2MGI1ZTFkN2QzMjMwY2UwMDk1YjU3Y2M1MWVjZTUxYmI4Y2Q1
|
11
|
+
MjA1Nzc3ZDQ2YjlmMWRlOTVmMDg5YzZlOTJhNDNiNjY3OTJjZDQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NDZmYjhlYmE3MDE0ZWMxNWUxY2Y5NTgwZmIwNjkzYTIwNDBhODUwMmI1OTgx
|
14
|
+
YjgyMzM2NDUzMmM4NDBmMjJmNWYwMTNmYTJiZmQ4NmRmNDRlZDAxNGRiNzM3
|
15
|
+
N2Y5ZGFkYWIzOGE5OWQ0ZThmZDc2Yzc0NWU1YzhlNDYwYzE2OWY=
|
@@ -339,7 +339,7 @@ class Fanforce::Factory
|
|
339
339
|
def run_git_overview(addon_dir, processed_count, total_count, length)
|
340
340
|
addon = Addon.load(addon_dir)
|
341
341
|
puts '------------------------------------------------------------------------'
|
342
|
-
committed =
|
342
|
+
committed = 'git status'.include?('nothing to commit') ? true : false
|
343
343
|
printf "%-#{length+3}s %-20s %s\n", addon.dir_name, addon.type==:plugin ? addon.plugin_type : 'n/a', committed ? 'Committed'.format(:green) : 'Uncommitted'.format(:red)
|
344
344
|
end
|
345
345
|
|