fastlane-plugin-git_status 0.1.0 → 0.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58f0e9f2549b3785d4e141582382127f61bf287c
|
|
4
|
+
data.tar.gz: 1a8fa26ef19de5a87e802e63430eb9b5261863fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b311fde1041d45ff4c721e7a7444752d2f22deb646b012ce8fdf76f51196f3164977623d4ab8c32b38b8c3e4f4df2796341de3f9011d301d66522d577260388a
|
|
7
|
+
data.tar.gz: d6b1d79b679af0f35a75b03ce209a937d4ed0b1f609719dd0624a508f31d1c4272f7da8bfe77212f3330b5153af91eaffeb48a938260ef63c59de3db1f47fce1
|
data/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2016 Bruno Coelho <
|
|
3
|
+
Copyright (c) 2016 Bruno Coelho <4brunu@gmail.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -10,7 +10,7 @@ module Fastlane
|
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
result = Actions.sh("git status --porcelain #{paths}")
|
|
13
|
-
UI.success("git status \"#{params[:path]}\" \n \"#{result}\"")
|
|
13
|
+
UI.success("git status --porcelain \"#{params[:path]}\" \n \"#{result}\"")
|
|
14
14
|
return result
|
|
15
15
|
|
|
16
16
|
end
|
|
@@ -35,7 +35,8 @@ module Fastlane
|
|
|
35
35
|
[
|
|
36
36
|
FastlaneCore::ConfigItem.new(key: :path,
|
|
37
37
|
description: "The file or directory you want to see the status",
|
|
38
|
-
optional:
|
|
38
|
+
optional: true,
|
|
39
|
+
default_value: ".",
|
|
39
40
|
type: [String, Array],
|
|
40
41
|
verify_block: proc do |value|
|
|
41
42
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-git_status
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bruno Coelho
|
|
@@ -95,7 +95,7 @@ dependencies:
|
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: 1.111.0
|
|
97
97
|
description:
|
|
98
|
-
email:
|
|
98
|
+
email: 4brunu@gmail.com
|
|
99
99
|
executables: []
|
|
100
100
|
extensions: []
|
|
101
101
|
extra_rdoc_files: []
|