raykit 0.0.275 → 0.0.276
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/raykit/tasks.rb +6 -2
- 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: fc3ee06a28faa9c13bdc3fbdadda1d3149052be97e809f56b1e6db5ab1ff3c33
|
4
|
+
data.tar.gz: 0521f8b226e2e5e7067b8a95bb3ddcd5b6865cc272510f0459ab90ca0da075f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a531f3c4abd3d86fd24961a1e363fc97807d133b0ac92ccc2b004a37a667f5e30676b69d78b4b78955446cd303797334706d5b95176316b25e9f72e916198881
|
7
|
+
data.tar.gz: dedb9a283a5a63b3cab33ecd0032fae337ad859fc242803965e51ce3e409a62a0a844bcf826ab394c17619821293c77574c79c86cf625444fc9592ae593cebf2
|
data/lib/raykit/tasks.rb
CHANGED
@@ -38,8 +38,12 @@ end
|
|
38
38
|
|
39
39
|
desc "push changes including tags"
|
40
40
|
task :push do
|
41
|
-
|
42
|
-
|
41
|
+
if(git_dir.detached?)
|
42
|
+
puts "detached head state, skipping integrate operations"
|
43
|
+
else
|
44
|
+
PROJECT.run("git push")
|
45
|
+
PROJECT.run("git push --tags")
|
46
|
+
end
|
43
47
|
end
|
44
48
|
|
45
49
|
desc "clean files not tracked by git"
|