neeto-commons-backend 1.0.98 → 1.0.99

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: 01fc7172a4ae07916ee02d3024318a10bcf67f63e31107861bf43f1e3ef594c2
4
- data.tar.gz: 8a1eb887515c1f9eae499c852ff0128f3e9d5469235cb7ec4a7376c656d482b5
3
+ metadata.gz: 639f85e422b5d668688d9310c5ac9b22e47e1bbbea1060108e1f93c8c6b6f4c5
4
+ data.tar.gz: 635a25c8bd054f1e34e5d77ad6ac98c997f402b065f0dddd834112cca4d3a2c1
5
5
  SHA512:
6
- metadata.gz: c9d245b8c7a98ff1e73582d32105a67088dbd15fae88c7d7447f2ff7ce8f3354dafd097f6e57122db0e4c58e5bdea7226ca5ffdea6c376f59d8a68be443ee066
7
- data.tar.gz: 0f8dac07544c8c0eab58b82ed9680bae1d915ad0c4e798a994276be756b0fc6afd8d9419f1e557214755c4b3e710f11243d77e12d59b8e1a5c09523c6556eb29
6
+ metadata.gz: 5af328237c58f30483cb880e58968a1bb83a4317722c23e335531870c62043ab99136fa1e87110bc83f0bba8ff0489f027e7ae2aff5184b8cc9f748052b31f3f
7
+ data.tar.gz: 38d0f56e8e73516ffb9f941324e119a97d881e56885a3822a871be5a52e3da0a7744d48a5822c5e11273c41b3467cf56a3b815e995c20d5bed6d93c109d608e9
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.99)
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
 
@@ -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.99"
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.99
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.