neeto-commons-backend 1.0.98 → 1.0.100

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01fc7172a4ae07916ee02d3024318a10bcf67f63e31107861bf43f1e3ef594c2
4
- data.tar.gz: 8a1eb887515c1f9eae499c852ff0128f3e9d5469235cb7ec4a7376c656d482b5
3
+ metadata.gz: b497c84cd2a4436a429a88055f5d34fb90e70eb9ac65f4af568cebe5df5ef089
4
+ data.tar.gz: 60001bb71394c1afd09764c7049736abf3e50ab44adad86688736a5c12805527
5
5
  SHA512:
6
- metadata.gz: c9d245b8c7a98ff1e73582d32105a67088dbd15fae88c7d7447f2ff7ce8f3354dafd097f6e57122db0e4c58e5bdea7226ca5ffdea6c376f59d8a68be443ee066
7
- data.tar.gz: 0f8dac07544c8c0eab58b82ed9680bae1d915ad0c4e798a994276be756b0fc6afd8d9419f1e557214755c4b3e710f11243d77e12d59b8e1a5c09523c6556eb29
6
+ metadata.gz: 53b727402bf4b6c50eaf008b9dc272898ed68c6322d63b5ff4e5d1c71764114e9b362b355400cf55bef239c8aa4baa0f524c74a5ebe627300b757f4997bf7a07
7
+ data.tar.gz: cd3c5e62dd3206cfd173ca67722f7e087326dc7928de8bcc86d9fe8997637a2829a0272a1ae3f900b105ea5c3b298e61f9ab21b0e86677db8c2994de0f548b43
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neeto-commons-backend (1.0.98)
4
+ neeto-commons-backend (1.0.100)
5
5
  actionview
6
6
  bullet
7
7
  database_cleaner
data/README.md CHANGED
@@ -129,18 +129,6 @@ Category
129
129
  <tr>
130
130
  <td>
131
131
 
132
- - [semaphore.yml](./docs/semaphore/README.md#semaphoreyml)
133
-
134
- </td>
135
- <td>
136
-
137
- [Semaphore config](./docs/semaphore/README.md)
138
-
139
- </td>
140
- </tr>
141
- <tr>
142
- <td>
143
-
144
132
  - [Gemfile.common.rb](./docs/gemfiles/README.md#gemfilecommonrb)
145
133
 
146
134
  </td>
@@ -77,7 +77,7 @@ default: &default
77
77
 
78
78
  heroku:
79
79
  app_name: <%= ENV["HEROKU_APP_NAME"] %>
80
- domain_name: <%= ENV["REVIEW_APP_DOMAIN_NAME"] || "herokuapp.com" %>
80
+ domain_name: <%= ENV["REVIEW_APP_DOMAIN_NAME"] || "neetoreviewapp.net" %>
81
81
  auth_token: <%= ENV["HEROKU_AUTH_TOKEN"] %>
82
82
  certificate_name: <%= ENV["HEROKU_SSL_CERTIFICATE_NAME"] %>
83
83
 
@@ -21,7 +21,8 @@ module NeetoCommonsBackend
21
21
  config.redis = {
22
22
  url: Rails.application.secrets.redis_url,
23
23
  size: 18,
24
- reconnect_attempts: 2
24
+ reconnect_attempts: 2,
25
+ network_timeout: 10
25
26
  }
26
27
 
27
28
  unless Rails.env.test? || Rails.env.production? || Rails.env.staging?
@@ -37,7 +38,8 @@ module NeetoCommonsBackend
37
38
  config.redis = {
38
39
  url: Rails.application.secrets.redis_url,
39
40
  size: 2,
40
- reconnect_attempts: 2
41
+ reconnect_attempts: 2,
42
+ network_timeout: 10
41
43
  }
42
44
  end
43
45
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NeetoCommonsBackend
4
- VERSION = "1.0.98"
4
+ VERSION = "1.0.100"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neeto-commons-backend
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.98
4
+ version: 1.0.100
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prasanth Chaduvula
@@ -291,8 +291,6 @@ files:
291
291
  - ".prettierrc.js"
292
292
  - ".rubocop.yml"
293
293
  - ".ruby-version"
294
- - ".semaphore/semaphore.yml"
295
- - ".semaphore/staging-deploy.yml"
296
294
  - Gemfile
297
295
  - Gemfile.lock
298
296
  - README.md
@@ -343,7 +341,6 @@ files:
343
341
  - docs/model_concerns/README.md
344
342
  - docs/routes/README.md
345
343
  - docs/scripts/README.md
346
- - docs/semaphore/README.md
347
344
  - docs/services/README.md
348
345
  - docs/workers/README.md
349
346
  - docs/workflows/README.md
@@ -1,32 +0,0 @@
1
- version: v1.0
2
- name: cicheck
3
- agent:
4
- machine:
5
- type: e1-standard-2
6
- os_image: ubuntu2004
7
- global_job_config:
8
- prologue:
9
- commands:
10
- - checkout
11
- - sem-version ruby 3.2.2
12
- - sem-version node 18.12
13
- - sem-service start postgres 13
14
- - cp test/dummy/config/database.yml.ci test/dummy/config/database.yml
15
- - bundle config set --local without 'development'
16
- - bundle install --jobs 1
17
- - bundle exec rake db:create db:schema:load --trace
18
- - yarn install
19
- blocks:
20
- - name: Checks
21
- task:
22
- jobs:
23
- - name: Linters
24
- commands:
25
- - bundle exec neeto-audit
26
- - bundle exec rubocop
27
- # For eslint not to read common_files configuration
28
- - mv "lib/neeto_commons_backend/common_files/.eslintrc.js" "lib/neeto_commons_backend/common_files/eslintrc.js"
29
- - mv "lib/neeto_commons_backend/common_files/.prettierrc.js" "lib/neeto_commons_backend/common_files/prettierrc.js"
30
- - mv "lib/neeto_commons_backend/common_files/cypress-tests/.eslintrc.js" "lib/neeto_commons_backend/common_files/cypress-tests/eslintrc.js"
31
- - lib/neeto_commons_backend/common_files/.semaphore/commands/run_eslint_on_modified_files.sh
32
- - bundle exec rails test
@@ -1,23 +0,0 @@
1
- version: v1.0
2
- name: Heroku Staging deployment
3
- agent:
4
- machine:
5
- type: e1-standard-2
6
- os_image: ubuntu2004
7
-
8
- blocks:
9
- - name: Deployment to Staging
10
- run:
11
- when: "branch = 'main'"
12
- task:
13
- secrets:
14
- - name: heroku-http
15
- env_vars:
16
- - name: HEROKU_APP_NAME
17
- value: neeto-appname-web-staging # change appname to your neeto repo app name eg: neeto-auth-web-staging
18
- jobs:
19
- - name: Push code
20
- commands:
21
- - checkout --use-cache
22
- - heroku git:remote -a $HEROKU_APP_NAME
23
- - git push heroku -f $SEMAPHORE_GIT_BRANCH:main
@@ -1,5 +0,0 @@
1
- # Semaphore config
2
-
3
- - #### [semaphore.yml](https://github.com/bigbinary/neeto-commons-backend/blob/main/.semaphore/semaphore.yml)
4
-
5
- This is the common semaphore config for the all the neeto products.