raykit 0.0.139 → 0.0.140
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/project.rb +4 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59be65d2308f8c48d1640924d8cd6271565de4dd58960397a1d3f755caa684b9
|
4
|
+
data.tar.gz: a52d612ad5cf23053607b4e95ca88658e07ceaa505a379fa8c5efd5d4f9e1949
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af02c1562f54be852ec47656e51ebd45b0eb63edafc4dbba9646292769224958d56753f19b624d97a51606257f6323430ae09f587c697caf848902aa524429b9
|
7
|
+
data.tar.gz: c908d695c65eda09a04b59bed840de9ed207e22aaedae3fc1e0ad71b12177a2183abded175e511e7e175e3cf632401a134b68188fcfea4ff4ecbdd0d680cd8ab
|
data/lib/raykit/project.rb
CHANGED
@@ -190,7 +190,8 @@ module Raykit
|
|
190
190
|
status=`git status`
|
191
191
|
if(status.include?('use "git push"'))
|
192
192
|
run('git push')
|
193
|
-
|
193
|
+
|
194
|
+
#run('git push --tags')
|
194
195
|
end
|
195
196
|
end
|
196
197
|
self
|
@@ -214,7 +215,8 @@ module Raykit
|
|
214
215
|
if(@version != tag)
|
215
216
|
puts "latest tag #{@tag}" if(@verbose)
|
216
217
|
run("git tag #{@version} -m'#{@version}'")
|
217
|
-
push
|
218
|
+
run("git push origin #{@version}")
|
219
|
+
#push
|
218
220
|
end
|
219
221
|
else
|
220
222
|
puts "already has tag #{specific_tag}" if(@verbose)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.140
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
- !ruby/object:Gem::Version
|
115
115
|
version: '0'
|
116
116
|
requirements: []
|
117
|
-
rubygems_version: 3.0.
|
117
|
+
rubygems_version: 3.0.3
|
118
118
|
signing_key:
|
119
119
|
specification_version: 4
|
120
120
|
summary: ruby gem to support rake ci/cd tasks
|