firebase_dynamic_link 2.0.1 → 3.0.0
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 +4 -4
- data/.github/workflows/audit.yml +1 -1
- data/.github/workflows/coverage.yml +1 -1
- data/.github/workflows/test.yml +1 -1
- data/.gitignore +0 -2
- data/.stignore +47 -0
- data/Dockerfile +8 -0
- data/firebase_dynamic_link.gemspec +1 -1
- data/k8s.yml +52 -0
- data/lib/firebase_dynamic_link/version.rb +1 -1
- data/okteto.yml +13 -0
- metadata +10 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f381f96934e368893b36b4fe66586dea65bc9ad5bd9658c520c9f83efade6820
|
|
4
|
+
data.tar.gz: eadcad6f7ae3672dcd5c194cdf6a07ba26afff0d546d001732427ded2c966e32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1081c5c9e75452453dd3c2e3994c5a7f0a7589ae7d5b9fd71cbc31789bf389db07c319219eaf904a7546ee6607653f3f9f567b574734754ceee4bb227be8bce1
|
|
7
|
+
data.tar.gz: a7c43b28ce4a48e21287832fd85f7bb2bf96f2a8bf25689a27f4a75cfdec474e45b95d15141fb8e6c09284f8da02f4460dff10003e499208c056bc50aedbdafe
|
data/.github/workflows/audit.yml
CHANGED
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
uses: actions/checkout@v3
|
|
14
14
|
|
|
15
15
|
- name: Setup Ruby and install gems
|
|
16
|
-
uses: ruby/setup-ruby@
|
|
16
|
+
uses: ruby/setup-ruby@ece82769428359c077b5a5eaff268902a303c101
|
|
17
17
|
with:
|
|
18
18
|
ruby-version: 2.7
|
|
19
19
|
bundler-cache: true
|
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
steps:
|
|
14
14
|
- uses: actions/checkout@v3
|
|
15
15
|
- name: Set up Ruby
|
|
16
|
-
uses: ruby/setup-ruby@
|
|
16
|
+
uses: ruby/setup-ruby@ece82769428359c077b5a5eaff268902a303c101
|
|
17
17
|
with:
|
|
18
18
|
ruby-version: 3.0
|
|
19
19
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/.github/workflows/test.yml
CHANGED
|
@@ -14,7 +14,7 @@ jobs:
|
|
|
14
14
|
steps:
|
|
15
15
|
- uses: actions/checkout@v3
|
|
16
16
|
- name: Set up Ruby
|
|
17
|
-
uses: ruby/setup-ruby@
|
|
17
|
+
uses: ruby/setup-ruby@ece82769428359c077b5a5eaff268902a303c101
|
|
18
18
|
with:
|
|
19
19
|
ruby-version: ${{ matrix.ruby-version }}
|
|
20
20
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/.gitignore
CHANGED
data/.stignore
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.git
|
|
2
|
+
*.gem
|
|
3
|
+
*.rbc
|
|
4
|
+
coverage
|
|
5
|
+
InstalledFiles
|
|
6
|
+
pkg
|
|
7
|
+
spec/reports
|
|
8
|
+
spec/examples.txt
|
|
9
|
+
test/tmp
|
|
10
|
+
test/version_tmp
|
|
11
|
+
tmp
|
|
12
|
+
|
|
13
|
+
# Ignore Byebug command history file.
|
|
14
|
+
.byebug_history
|
|
15
|
+
|
|
16
|
+
## Specific to RubyMotion:
|
|
17
|
+
.dat*
|
|
18
|
+
.repl_history
|
|
19
|
+
build
|
|
20
|
+
*.bridgesupport
|
|
21
|
+
build-iPhoneOS
|
|
22
|
+
build-iPhoneSimulator
|
|
23
|
+
|
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
25
|
+
#
|
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
29
|
+
#
|
|
30
|
+
# vendor/Pods/
|
|
31
|
+
|
|
32
|
+
## Documentation cache and generated files:
|
|
33
|
+
.yardoc
|
|
34
|
+
_yardoc
|
|
35
|
+
|
|
36
|
+
## Environment normalization:
|
|
37
|
+
vendor/bundle
|
|
38
|
+
lib/bundler/man
|
|
39
|
+
|
|
40
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
41
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
42
|
+
# Gemfile.lock
|
|
43
|
+
# .ruby-version
|
|
44
|
+
# .ruby-gemset
|
|
45
|
+
|
|
46
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
47
|
+
.rvmrc
|
data/Dockerfile
ADDED
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.require_paths = ['lib']
|
|
26
26
|
|
|
27
27
|
spec.add_runtime_dependency 'case_transform2', '>= 1.0', '< 2.0'
|
|
28
|
-
spec.add_runtime_dependency 'dry-configurable', '>= 0
|
|
28
|
+
spec.add_runtime_dependency 'dry-configurable', '>= 1.0', '< 2.0'
|
|
29
29
|
spec.add_runtime_dependency 'faraday', '>= 0.16', '< 3.0'
|
|
30
30
|
spec.add_runtime_dependency 'faraday-net_http', '>= 1.0', '< 3.0'
|
|
31
31
|
|
data/k8s.yml
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
apiVersion: apps/v1
|
|
2
|
+
kind: Deployment
|
|
3
|
+
metadata:
|
|
4
|
+
name: firebase-dynamic-link
|
|
5
|
+
spec:
|
|
6
|
+
replicas: 1
|
|
7
|
+
selector:
|
|
8
|
+
matchLabels:
|
|
9
|
+
app: firebase-dynamic-link
|
|
10
|
+
template:
|
|
11
|
+
metadata:
|
|
12
|
+
labels:
|
|
13
|
+
app: firebase-dynamic-link
|
|
14
|
+
spec:
|
|
15
|
+
terminationGracePeriodSeconds: 0
|
|
16
|
+
containers:
|
|
17
|
+
- image: localhost:5000/firebase_dynamic_link:v3
|
|
18
|
+
name: firebase-dynamic-link
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
apiVersion: v1
|
|
23
|
+
kind: Service
|
|
24
|
+
metadata:
|
|
25
|
+
name: firebase-dynamic-link
|
|
26
|
+
spec:
|
|
27
|
+
type: ClusterIP
|
|
28
|
+
ports:
|
|
29
|
+
- name: "firebase-dynamic-link"
|
|
30
|
+
port: 8080
|
|
31
|
+
selector:
|
|
32
|
+
app: firebase-dynamic-link
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
apiVersion: networking.k8s.io/v1
|
|
37
|
+
kind: Ingress
|
|
38
|
+
metadata:
|
|
39
|
+
name: firebase-dynamic-link
|
|
40
|
+
annotations:
|
|
41
|
+
dev.okteto.com/generate-host: firebase-dynamic-link
|
|
42
|
+
spec:
|
|
43
|
+
rules:
|
|
44
|
+
- http:
|
|
45
|
+
paths:
|
|
46
|
+
- backend:
|
|
47
|
+
service:
|
|
48
|
+
name: firebase-dynamic-link
|
|
49
|
+
port:
|
|
50
|
+
number: 8080
|
|
51
|
+
path: /
|
|
52
|
+
pathType: ImplementationSpecific
|
data/okteto.yml
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
build:
|
|
2
|
+
firebase-dynamic-link:
|
|
3
|
+
image: localhost:5000/firebase_dynamic_link:v3
|
|
4
|
+
dockerfile: Dockerfile
|
|
5
|
+
deploy:
|
|
6
|
+
- kubectl apply -f k8s.yml
|
|
7
|
+
dev:
|
|
8
|
+
firebase-dynamic-link:
|
|
9
|
+
command: bash
|
|
10
|
+
sync:
|
|
11
|
+
- .:/usr/src/app
|
|
12
|
+
# volumes:
|
|
13
|
+
# - /usr/local/bundle/cache
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: firebase_dynamic_link
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- M Saiqul Haq
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-12-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: case_transform2
|
|
@@ -36,20 +36,20 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '0
|
|
39
|
+
version: '1.0'
|
|
40
40
|
- - "<"
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: '
|
|
42
|
+
version: '2.0'
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
47
|
- - ">="
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: '0
|
|
49
|
+
version: '1.0'
|
|
50
50
|
- - "<"
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: '
|
|
52
|
+
version: '2.0'
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: faraday
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -291,8 +291,10 @@ files:
|
|
|
291
291
|
- ".gitignore"
|
|
292
292
|
- ".rspec"
|
|
293
293
|
- ".rubocop.yml"
|
|
294
|
+
- ".stignore"
|
|
294
295
|
- Appraisals
|
|
295
296
|
- CODE_OF_CONDUCT.md
|
|
297
|
+
- Dockerfile
|
|
296
298
|
- Gemfile
|
|
297
299
|
- Guardfile
|
|
298
300
|
- LICENSE.txt
|
|
@@ -321,11 +323,13 @@ files:
|
|
|
321
323
|
- gemfiles/faraday_2.3.0_dry_0.13.gemfile.lock
|
|
322
324
|
- gemfiles/faraday_2.3.0_dry_0.15.gemfile
|
|
323
325
|
- gemfiles/faraday_2.3.0_dry_0.15.gemfile.lock
|
|
326
|
+
- k8s.yml
|
|
324
327
|
- lib/firebase_dynamic_link.rb
|
|
325
328
|
- lib/firebase_dynamic_link/client.rb
|
|
326
329
|
- lib/firebase_dynamic_link/connection.rb
|
|
327
330
|
- lib/firebase_dynamic_link/link_renderer.rb
|
|
328
331
|
- lib/firebase_dynamic_link/version.rb
|
|
332
|
+
- okteto.yml
|
|
329
333
|
homepage: https://github.com/saiqulhaq/firebase_dynamic_link
|
|
330
334
|
licenses:
|
|
331
335
|
- MIT
|