capistrano-gity 1.0.1 → 1.0.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 +8 -8
- data/README.md +1 -1
- data/capistrano-gity.gemspec +1 -1
- data/lib/capistrano/tasks/gity.cap +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
|
+
YzgzNDEyMGZiNzJhOTcwOTIyYWQ5N2MzMmM2ZGU2NzkyZTIzOWNjOA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MzgzYTQ5MWQ2ZDU0MmNhMzdiMGM5MjdiODM3YzMyMjJjZjdiYTBkZg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MjNlMDQ3ZDE0MTFmNDAwZDZlY2YzY2ZmOTA2ZDY0YmY3OWM3OWQwZWVhODhl
|
|
10
|
+
MTY5YmNiN2YwMzU0NWNlMzBmYjM1M2VhNzcyNTVjM2VjNzk4NjU1ZGIyYmJh
|
|
11
|
+
MzBmNDRiYjE3ZTZlYjZkZThkODZkZDg3YWQ2NTAwN2E0ZTcwYTI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YTdlMTQ5OTlmMDMwOWI0OTk4NTk5YzYwYTk4YTc1YThmMTZiNzRlYWY4NjUy
|
|
14
|
+
NDQxZjYxY2EwYzFhNmU0MzA3NTg0ZWFiODQ2MTNjYjI3MmU2ZjNjOWM0ZGM0
|
|
15
|
+
Mzc4ODY3OGVjNTliZjE2MDk3OWM3ZTRiMWMyMDU5MjBjNjI3N2I=
|
data/README.md
CHANGED
data/capistrano-gity.gemspec
CHANGED
|
@@ -110,7 +110,7 @@ namespace :gity do
|
|
|
110
110
|
def quit?
|
|
111
111
|
return false if !fetch(:check_master)
|
|
112
112
|
|
|
113
|
-
upstream_master = `git rev-parse --short #{fetch(:remote)}/master
|
|
113
|
+
upstream_master = `git rev-parse --short #{fetch(:remote)}/master`.chomp
|
|
114
114
|
commit_id = fetch(:commit_id)
|
|
115
115
|
if commit_id != upstream_master
|
|
116
116
|
puts <<-MSG
|