raykit 0.0.226 → 0.0.227
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 +10 -7
- 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: 0a699054f2cd3b461b7936025c34b2e891f38d8c65bb4b05f4a97c7b79deb8dc
|
4
|
+
data.tar.gz: 7adea47c9e8cd1975cfe2e8f1ab1ba472168e81e46527485d05b377da1f4f428
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0dbe7ee5bbc15ef2d71211d8b4e271465836c17703ebd03ddeff2d04f564e243c165ec44a93b734e14d17eb4be67478292f4d9788e133d43e071c6cc8d4ad595
|
7
|
+
data.tar.gz: 903c276189af5b39dbd03ef0c7ddd444e68183825ec74e35833999e274e9b2b4637cf55b1971565176c20beca9c0cfc64f65628c07bc9ac2672c7a313dd05b90
|
data/lib/raykit/tasks.rb
CHANGED
@@ -7,18 +7,21 @@ end
|
|
7
7
|
desc "integrate changes into the git repository"
|
8
8
|
task :integrate do
|
9
9
|
puts Rainbow(':integrate').blue.bright
|
10
|
-
PROJECT.run('git pull')
|
11
10
|
if(!File.exist?('.gitignore'))
|
12
11
|
puts "warning: .gitignore does not exist."
|
13
12
|
else
|
14
13
|
PROJECT.run('git add --all')
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
14
|
+
if(PROJECT.outstanding_commit?)
|
15
|
+
if(Rake::Task.task_defined?("test"))
|
16
|
+
Rake::Task["test"].invoke
|
17
|
+
end
|
18
|
+
commit_message='integrate'
|
19
|
+
PROJECT.run("git commit -m\"#{commit_message}\"") if(PROJECT.outstanding_commit?)
|
20
|
+
PROJECT.run("git pull")
|
21
|
+
PROJECT.run("git push")
|
22
|
+
PROJECT.run("git push --tags")
|
23
|
+
end
|
19
24
|
end
|
20
|
-
PROJECT.run("git pull")
|
21
|
-
|
22
25
|
end
|
23
26
|
|
24
27
|
desc "clean files not tracked by git"
|
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.227
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|