raykit 0.0.223 → 0.0.224

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e887795456f24c276a27254042fd39ef4628dd96b33a945ab4f7b3044009e93
4
- data.tar.gz: 743cbdf371593cac506cc9156c542140e1df6d54d80e177e1546a93d9e2e957c
3
+ metadata.gz: 4a10090468ef7ebf65d154dabbda91e798124b12cd2cdff11e2b0ccf204760f9
4
+ data.tar.gz: 2ce235cd3c9967ce2945cda02394fcb0fdea50fa9df0a07f36ab06855c6154ac
5
5
  SHA512:
6
- metadata.gz: 83ed0466c87b123eba02f86e3e465e3c3c14292ee651cdd523a6fd73f1b590790b92215edbd96e6452faa37b79260cf88205aada9ea98b63c97b0e3b6e7d97a0
7
- data.tar.gz: bbad5396c5f058921defb7a2449786a97e9d823e198d700e42e6e197018df955d3580a7d99572ad9c68dd64a7bc1032bc1bacb8e8fa85528605fda05f36aa54c
6
+ metadata.gz: 6dc1841889be35faf6714580f84637d5e59777bd530662888f38973ee6f18d60d1c3d6243bf17ef22d4e15b1cf3d48306992725d00db109be20386d38fc5698f
7
+ data.tar.gz: 297ec68b370927114ecf2d04ff5459952bcb40ec5c415d87122cd214c1d594a3ff8bafa9822bfaeda87d74e3c10d81c9ffaa5e19c76c5b246683ef956c9b9be9
@@ -186,8 +186,8 @@ module Raykit
186
186
  puts "PROJECT.version".ljust(ljust) + Rainbow(PROJECT.version).yellow.bright
187
187
  puts "PROJECT.remote".ljust(ljust) + Rainbow(PROJECT.remote).yellow.bright
188
188
  puts "PROJECT.branch".ljust(ljust) + Rainbow(PROJECT.branch).yellow.bright
189
- puts "PROJECT.target".ljust(ljust) + Rainbow(PROJECT.target).yellow.bright
190
- puts "PROJECT.target_md5".ljust(ljust) + Rainbow(PROJECT.target_md5).yellow.bright
189
+ #puts "PROJECT.target".ljust(ljust) + Rainbow(PROJECT.target).yellow.bright
190
+ #puts "PROJECT.target_md5".ljust(ljust) + Rainbow(PROJECT.target_md5).yellow.bright
191
191
  puts "PROJECT.latest_tag".ljust(ljust) + Rainbow(PROJECT.latest_tag).yellow.bright
192
192
  puts "PROJECT.latest_tag_commit".ljust(ljust) + Rainbow(PROJECT.latest_tag_commit).yellow.bright
193
193
  puts "PROJECT.latest_tag_md5".ljust(ljust) + Rainbow(PROJECT.latest_tag_md5).yellow.bright
@@ -8,11 +8,15 @@ desc "integrate changes into the git repository"
8
8
  task :integrate do
9
9
  puts Rainbow(':integrate').blue.bright
10
10
  PROJECT.run('git pull')
11
- PROJECT.run('git add --all')
12
- commit_message='integrate'
13
- PROJECT.run("git commit -m\"#{commit_message}\"") if(PROJECT.outstanding_commit?)
14
- PROJECT.run("git push")
15
- PROJECT.run("git push --tags")
11
+ if(!File.exist?('.gitignore'))
12
+ puts "warning: .gitignore does not exist."
13
+ else
14
+ PROJECT.run('git add --all')
15
+ commit_message='integrate'
16
+ PROJECT.run("git commit -m\"#{commit_message}\"") if(PROJECT.outstanding_commit?)
17
+ PROJECT.run("git push")
18
+ PROJECT.run("git push --tags")
19
+ end
16
20
  PROJECT.run("git pull")
17
21
 
18
22
  end
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.223
4
+ version: 0.0.224
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow