neetob 0.5.18 → 0.5.19

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: 8942c3a30b3d6edc581f2578939d0fc183553269ecd8640142051b90371554a5
4
- data.tar.gz: 5fb19b35d0af660c4d91d1ee0425ed39ae61aff0749718466a34eb0d70cd3ccd
3
+ metadata.gz: 2b614b638dd11a35aa90bb1f4970f364152c47a26052d01a4cd813b571e8cfe8
4
+ data.tar.gz: b74d72e92373e76896bd121f86fc05ec937cbb4dfdaddeb9781fb56e06cd2007
5
5
  SHA512:
6
- metadata.gz: 0fbf9a88888b0d500836970638cfe86d0d76a9381ef7c27ee1a3d28d6f783dc2ded006c491ac5a11e8b5c5cbb8b33d853e80ca3837632164b86d84c101d66f82
7
- data.tar.gz: d8f9381c36e206a4a5b9d54364b5aa9a71524403777e8fbd7844fa20e312829c14f7dc7e73e116be8e884f9c6f2198de4fe5d9adae788b2143c535ecfe5dcbf9
6
+ metadata.gz: f14fb034db3b201677ca0ac3a13700560cfbc4f9326a22f5bcd6e49d5db186d153095ef9022187136ea52fe6b75676730ce5065045cf9c5c4cc2266a29bc4de0
7
+ data.tar.gz: b0e81f94827583c4a5dfb8cdbbfcab7ad60deb3a3dab5b958c1159fb2e4c75e2eb3389614c76073952101bdeeefbd0b691f338b7390a357a245fe49812be932b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neetob (0.5.18)
4
+ neetob (0.5.19)
5
5
  brakeman (~> 5.0)
6
6
  chronic
7
7
  dotenv (~> 2.8.1)
@@ -23,11 +23,6 @@ module Neetob
23
23
  begin
24
24
  ui.info("\nWorking on repo #{repo}", print_to_audit_log: false)
25
25
  clone_repo_in_tmp_dir(repo)
26
- gemfile_path = File.join(tmp_repo_path(repo), "Gemfile")
27
- until File.exist?(gemfile_path)
28
- ui.info("Waiting for clone to finish", print_to_audit_log: false)
29
- sleep(1)
30
- end
31
26
  bundle_install!(repo)
32
27
  report = run_bundle_audit(repo)
33
28
  ui.success("Successfully executed bundle audit for #{repo}", print_to_audit_log: false)
@@ -46,10 +46,6 @@ module Neetob
46
46
  `git clone --quiet git@github.com:#{repo}.git /tmp/neetob/#{repo_name_without_org_suffix(repo)}`
47
47
  end
48
48
 
49
- def tmp_repo_path(repo)
50
- "/tmp/neetob/#{repo_name_without_org_suffix(repo)}"
51
- end
52
-
53
49
  def add_commmit_and_push_changes!(repo, local_repo = false)
54
50
  create_commit!(repo, local_repo)
55
51
  push_changes!(repo, local_repo)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neetob
4
- VERSION = "0.5.18"
4
+ VERSION = "0.5.19"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neetob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.18
4
+ version: 0.5.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Udai Gupta