neetob 0.5.20 → 0.5.22

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: 39e94d460468fc82db93415ffdc880c955b82f3d9665ced61074a63a308e943c
4
- data.tar.gz: 9771fcca58bbd2806ffcaa817217f61d8630b0bf004ff827f22a1a3e3b83bb08
3
+ metadata.gz: 1492c586e328d32858e4f4306751451e14afafea51edb594fc0024151142b9fe
4
+ data.tar.gz: fe1d85a85232eac92e481f7b30c91354270b2460eb5c2c6212fee7cd8c994145
5
5
  SHA512:
6
- metadata.gz: f585207aa9f2d3414b74e1aa9bbc324af70cdc8ef8d870d79968674f06b54d5ec40da5ff52cc486e53300151c181e28310ec6ce06d9338f561790ca578e7d152
7
- data.tar.gz: b711f33d69f333e75fba222898c24f1330421de81ea251d26aa417da3b3fad0df928cd2c09d177307b06402ef6b3e2c09f42a3d629e86c5bda4669425b825288
6
+ metadata.gz: '0384d3acd38a1ef25e344a72bcc6b0911d336d4e32856fbbb3f36a9e4a61fa8be51544bb05e5ee1fdf53c4b690964e8c59b8499346bbf4ab6da14a4e51199819'
7
+ data.tar.gz: 00d9c93bda4587d6d28cda1d2dc17ceb1f46dc833fad581922f42962fd8e761e98a6cf957ce6ebd15a33b577c36299627a185e3d9c7700033ec9c54b7c3858f1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neetob (0.5.20)
4
+ neetob (0.5.22)
5
5
  brakeman (~> 5.0)
6
6
  chronic
7
7
  dotenv (~> 2.8.1)
data/bookmarks.md CHANGED
@@ -115,11 +115,7 @@ example: [All nano issues created before the 20th Mar 2024](https://github.com/i
115
115
  - [Varun's Board](https://github.com/orgs/bigbinary/projects/73/views/1):
116
116
  [neeto-playdash-web](https://github.com/orgs/bigbinary/projects/73/views/1?filterQuery=repo%3A%22bigbinary%2Fneeto-playdash-web%22),
117
117
 
118
- - [Farhan's Board](https://github.com/orgs/bigbinary/projects/78/views/1)
119
-
120
- - [React Native Board](https://github.com/orgs/bigbinary/projects/98/views/1)
121
-
122
- - [Marketing Board](https://github.com/orgs/bigbinary/projects/82/views/1)
118
+ - [Kirti's Board](https://github.com/orgs/bigbinary/projects/97/views/2)
123
119
 
124
120
  ## Products checklist
125
121
 
@@ -9,6 +9,10 @@ module Neetob
9
9
  class Base < Github::Base
10
10
  BRANCH_NAME = "neeto_compliance"
11
11
  PR_TITLE = "Neeto Compliance"
12
+ REPO_SPECIFIC_COMMANDS_BEFORE_BUNDLE_INSTALL = {
13
+ "bigbinary/neeto-deploy-web" => "sed -i '' '/gem \"karafka\"/d' Gemfile"
14
+ }
15
+
12
16
  attr_accessor :branch_name, :pr_title
13
17
 
14
18
  def initialize(pr_title = PR_TITLE, branch_name = BRANCH_NAME)
@@ -23,6 +27,7 @@ module Neetob
23
27
  commands = [
24
28
  cd_to_repo(repo, local_repo),
25
29
  "rbenv local 3.3.5",
30
+ repo_specific_commands_before_bundle_install(repo),
26
31
  "BUNDLE_GEMFILE='#{repo_path(repo)}/Gemfile' bundle install"
27
32
  ]
28
33
  execute_command!(commands.join(" && "))
@@ -32,6 +37,10 @@ module Neetob
32
37
  "/tmp/neetob/#{repo_name_without_org_suffix(repo)}"
33
38
  end
34
39
 
40
+ def repo_specific_commands_before_bundle_install(repo)
41
+ REPO_SPECIFIC_COMMANDS_BEFORE_BUNDLE_INSTALL[repo] || "pwd"
42
+ end
43
+
35
44
  def yarn_install!(repo, local_repo = false)
36
45
  execute_command!("#{cd_to_repo(repo, local_repo)} & yarn install")
37
46
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neetob
4
- VERSION = "0.5.20"
4
+ VERSION = "0.5.22"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neetob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.20
4
+ version: 0.5.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Udai Gupta
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-18 00:00:00.000000000 Z
11
+ date: 2025-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor