neeto-commons-backend 1.0.92 → 1.0.94

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: 3ae9299fb3ccb3cda7bc3aa5e3f8a5f2959832ba635b890182d72298dbd4cb13
4
- data.tar.gz: d65bccef065c1e8d300a9f7eb00dfa9c75fd928c227f4513febbb1ed7998da21
3
+ metadata.gz: 79e04b5b977ee3d3c6c23db4e33c95c0979b8e7b8e7a3ed3833b11ffda81f3bf
4
+ data.tar.gz: eb521be32e787db3848fa8aef4710cc2ebbd02e6a0f064bece2f5cc2f888a084
5
5
  SHA512:
6
- metadata.gz: 172af6ced56365f34a5a295a1de1cb8afb0a34eb9296e0eddff9349a06517c0c685c5337a58081a78be9e2bcd4b6dc38463a2e5dacd115a3e6167b6dbbe1d337
7
- data.tar.gz: 4dc63c300eb3bded97bc0982a5b5fe43dbdde96d4b6252b7ba9b1fbae875e23ff0476e6b09dd5ba967f761a69fd0ac24616429eb44245634d991244c6ad53f0a
6
+ metadata.gz: 5651a1aba5faade508c6f45a54e6e4ee9ed9bcaf5bcee4a218d328c3d387068514b8503292dbf68e617abbc92e90ca4ab57a016e9b18cbafe7273b838bb7622c
7
+ data.tar.gz: 891509019a622e76f068181648a4c01fe6c360fdcf9a2d8d15d380e694987de816b19e3108a8d10b6187ddfba48d8b665e13b628146543dcae800db2629b4143
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neeto-commons-backend (1.0.92)
4
+ neeto-commons-backend (1.0.94)
5
5
  actionview
6
6
  bullet
7
7
  database_cleaner
@@ -25,14 +25,14 @@ PATH
25
25
  GEM
26
26
  remote: https://O6Ts9-SVDaUZpHMRs2CpJp22RwbETDE@gems.neeto.com/
27
27
  specs:
28
- neeto-compliance (1.0.59)
28
+ neeto-compliance (1.0.60)
29
29
  colorize
30
30
  deep_merge
31
31
  hashdiff
32
32
  json (~> 2.6.2)
33
33
  neeto-email-prefixer (1.0.9)
34
34
  rails (>= 4.0)
35
- neeto-mail-interceptor (1.0.46)
35
+ neeto-mail-interceptor (1.0.47)
36
36
  activesupport (>= 7)
37
37
  aws-sdk-dynamodb (= 1.80)
38
38
  zerobounce (~> 0.2.2)
@@ -110,8 +110,8 @@ GEM
110
110
  ansi (1.5.0)
111
111
  ast (2.4.2)
112
112
  aws-eventstream (1.2.0)
113
- aws-partitions (1.768.0)
114
- aws-sdk-core (3.173.0)
113
+ aws-partitions (1.769.0)
114
+ aws-sdk-core (3.173.1)
115
115
  aws-eventstream (~> 1, >= 1.0.2)
116
116
  aws-partitions (~> 1, >= 1.651.0)
117
117
  aws-sigv4 (~> 1.5)
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ json.applinks(
4
+ {
5
+ apps: [],
6
+ details: [
7
+ {
8
+ appID: "5V896MVJUP.com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}",
9
+ paths: ["*"]
10
+ },
11
+ {
12
+ appID: "5V896MVJUP.com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}.staging",
13
+ paths: ["*"]
14
+ }
15
+ ]
16
+ }
17
+ )
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ json.array! [
4
+ {
5
+ "relation": ["delegate_permission/common.handle_all_urls"],
6
+ "target": {
7
+ "namespace": "android_app",
8
+ "package_name": "com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}.staging",
9
+ "sha256_cert_fingerprints": Rails.application.secrets[:sha256_cert_fingerprints_staging]
10
+ }
11
+ },
12
+ {
13
+ "relation": ["delegate_permission/common.handle_all_urls"],
14
+ "target": {
15
+ "namespace": "android_app",
16
+ "package_name": "com.bigbinary.mobile.#{Rails.application.secrets[:application_name].downcase}",
17
+ "sha256_cert_fingerprints": Rails.application.secrets[:sha256_cert_fingerprints]
18
+ }
19
+ }
20
+ ]
@@ -3,7 +3,7 @@
3
3
  Rails.application.routes.draw do
4
4
  defaults format: :json do
5
5
  scope ".well-known" do
6
- get "assetlinks", to: "well_knowns#assetlinks"
6
+ get "assetlinks", to: "neeto_commons_backend/well_knowns#assetlinks"
7
7
  get "apple-app-site-association", to: "well_knowns#apple_app_site_association"
8
8
  end
9
9
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NeetoCommonsBackend
4
- VERSION = "1.0.92"
4
+ VERSION = "1.0.94"
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.92
4
+ version: 1.0.94
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prasanth Chaduvula
@@ -317,6 +317,8 @@ files:
317
317
  - app/services/neeto_commons_backend/sample_data/common/organization_service.rb
318
318
  - app/services/neeto_commons_backend/source_map_publish_service.rb
319
319
  - app/views/neeto_commons_backend/failures/show.html.erb
320
+ - app/views/neeto_commons_backend/well_knowns/apple_app_site_association.json.jbuilder
321
+ - app/views/neeto_commons_backend/well_knowns/assetlinks.json.jbuilder
320
322
  - app/views/shared/_common.html.erb
321
323
  - app/views/shared/_neeto_engineering_replay_widget.html.erb
322
324
  - app/views/shared/_neeto_widget.html.erb