raykit 0.0.271 → 0.0.272
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 +8 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10193cfd6c5f63b867bdc987163c1068caec6cfaa7973c8a011f335c0a6e1136
|
4
|
+
data.tar.gz: 1191beb81df00046a894536bcf80fb1a55494429cd78ccce2bfe8e7131749d24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d70d94edc09dda157be0a33b6a2ff750c04730537d685166067072e66090fa2975647eb702112e7b1e3fa20cc5798e34e11d38eb0db87e6c80fc72e89bcbc19f
|
7
|
+
data.tar.gz: 7ad200bf1c8cbd900c1bb36a0efd212afffde8c18d858043d587a227154f5336a1c781d772c201dc115c12c211712f1ab511a632334296f8e78d3505e5f89f53
|
data/lib/raykit/tasks.rb
CHANGED
@@ -27,13 +27,19 @@ task :integrate do
|
|
27
27
|
commit_message='integrate'
|
28
28
|
PROJECT.run("git commit -m\"#{commit_message}\"") if(PROJECT.outstanding_commit?)
|
29
29
|
PROJECT.run("git pull")
|
30
|
-
PROJECT.run("git push")
|
31
|
-
PROJECT.run("git push --tags")
|
30
|
+
#PROJECT.run("git push")
|
31
|
+
#PROJECT.run("git push --tags")
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
36
36
|
|
37
|
+
desc "push changes including tags"
|
38
|
+
task :push do
|
39
|
+
PROJECT.run("git push")
|
40
|
+
PROJECT.run("git push --tags")
|
41
|
+
end
|
42
|
+
|
37
43
|
desc "clean files not tracked by git"
|
38
44
|
task :clean do
|
39
45
|
puts Rainbow(':clean').blue.bright
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raykit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.272
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
122
|
- !ruby/object:Gem::Version
|
123
123
|
version: '0'
|
124
124
|
requirements: []
|
125
|
-
rubygems_version: 3.
|
125
|
+
rubygems_version: 3.2.3
|
126
126
|
signing_key:
|
127
127
|
specification_version: 4
|
128
128
|
summary: ruby gem to support rake ci/cd tasks
|