firebase_dynamic_link 1.0.4 → 1.0.5
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/.env.template +2 -0
- data/.github/workflows/audit.yml +22 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/coverage.yml +34 -0
- data/.github/workflows/gem-push.yml +45 -0
- data/.github/workflows/test.yml +25 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +1 -146
- data/Appraisals +72 -12
- data/Gemfile +1 -1
- data/Guardfile +7 -5
- data/README.md +63 -53
- data/Rakefile +2 -2
- data/bin/bundle-audit +29 -0
- data/bin/bundler-audit +29 -0
- data/bin/console +3 -3
- data/docker-compose.yml +9 -0
- data/firebase_dynamic_link.gemspec +28 -25
- data/gemfiles/faraday_0.16_dry_0.11.gemfile +10 -0
- data/gemfiles/faraday_0.16_dry_0.11.gemfile.lock +82 -0
- data/gemfiles/faraday_0.16_dry_0.12.gemfile +10 -0
- data/gemfiles/faraday_0.16_dry_0.12.gemfile.lock +80 -0
- data/gemfiles/faraday_0.16_dry_0.13.gemfile +10 -0
- data/gemfiles/faraday_0.16_dry_0.13.gemfile.lock +80 -0
- data/gemfiles/faraday_0.16_dry_0.9.gemfile +10 -0
- data/gemfiles/faraday_0.16_dry_0.9.gemfile.lock +80 -0
- data/gemfiles/faraday_0.17_dry_0.11.gemfile +10 -0
- data/gemfiles/faraday_0.17_dry_0.11.gemfile.lock +82 -0
- data/gemfiles/faraday_0.17_dry_0.12.gemfile +10 -0
- data/gemfiles/faraday_0.17_dry_0.12.gemfile.lock +80 -0
- data/gemfiles/faraday_0.17_dry_0.13.gemfile +10 -0
- data/gemfiles/faraday_0.17_dry_0.13.gemfile.lock +80 -0
- data/gemfiles/faraday_0.17_dry_0.9.gemfile +10 -0
- data/gemfiles/faraday_0.17_dry_0.9.gemfile.lock +80 -0
- data/gemfiles/faraday_1.8.0_dry_0.11.gemfile +10 -0
- data/gemfiles/faraday_1.8.0_dry_0.11.gemfile.lock +99 -0
- data/gemfiles/faraday_1.8.0_dry_0.12.gemfile +10 -0
- data/gemfiles/faraday_1.8.0_dry_0.12.gemfile.lock +97 -0
- data/gemfiles/faraday_1.8.0_dry_0.13.gemfile +10 -0
- data/gemfiles/faraday_1.8.0_dry_0.13.gemfile.lock +97 -0
- data/gemfiles/faraday_1.8.0_dry_0.9.gemfile +10 -0
- data/gemfiles/faraday_1.8.0_dry_0.9.gemfile.lock +97 -0
- data/gemfiles/faraday_2.0.0_dry_0.11.gemfile +10 -0
- data/gemfiles/faraday_2.0.0_dry_0.11.gemfile.lock +84 -0
- data/gemfiles/faraday_2.0.0_dry_0.12.gemfile +10 -0
- data/gemfiles/faraday_2.0.0_dry_0.12.gemfile.lock +82 -0
- data/gemfiles/faraday_2.0.0_dry_0.13.gemfile +10 -0
- data/gemfiles/faraday_2.0.0_dry_0.13.gemfile.lock +82 -0
- data/gemfiles/faraday_2.0.0_dry_0.9.gemfile +10 -0
- data/gemfiles/faraday_2.0.0_dry_0.9.gemfile.lock +82 -0
- data/lib/firebase_dynamic_link/client.rb +14 -12
- data/lib/firebase_dynamic_link/connection.rb +1 -1
- data/lib/firebase_dynamic_link/link_renderer.rb +12 -11
- data/lib/firebase_dynamic_link/version.rb +1 -1
- data/lib/firebase_dynamic_link.rb +54 -14
- metadata +130 -36
- data/.travis.yml +0 -24
- data/gemfiles/version_2017a.gemfile +0 -8
- data/gemfiles/version_2017a.gemfile.lock +0 -75
- data/gemfiles/version_2017b.gemfile +0 -8
- data/gemfiles/version_2017b.gemfile.lock +0 -75
- data/gemfiles/version_2018.gemfile +0 -8
- data/gemfiles/version_2018.gemfile.lock +0 -75
- data/gemfiles/version_2020.gemfile +0 -8
- data/gemfiles/version_2020.gemfile.lock +0 -78
data/README.md
CHANGED
@@ -1,37 +1,35 @@
|
|
1
|
+
[](https://codeclimate.com/github/saiqulhaq/firebase_dynamic_link/maintainability)
|
2
|
+
[](https://github.com/saiqulhaq/firebase_dynamic_link/actions/workflows/audit.yml)
|
3
|
+
[](https://github.com/saiqulhaq/firebase_dynamic_link/actions/workflows/test.yml)
|
4
|
+
[](https://codeclimate.com/github/saiqulhaq/firebase_dynamic_link/test_coverage)
|
1
5
|
|
2
|
-
|
3
|
-
|
4
|
-
+ [FirebaseDynamicLink](#firebasedynamiclink)
|
5
|
-
- [Information](#information)
|
6
|
-
* [Installation](#installation)
|
7
|
-
* [Usage](#usage)
|
8
|
-
- [Configure the HTTP client](#configure-the-http-client)
|
9
|
-
- [Shorten a link](#shorten-a-link)
|
10
|
-
- [Shorten parameters](#shorten-parameters)
|
11
|
-
* [CHANGES](#changes)
|
12
|
-
* [Development](#development)
|
13
|
-
* [Contributing](#contributing)
|
14
|
-
* [License](#license)
|
15
|
-
* [Code of Conduct](#code-of-conduct)
|
16
|
-
|
17
|
-
<!-- vim-markdown-toc -->
|
6
|
+
Firebase Dynamic Link is a tool to create a deep link of your webpage. It can be a tool to create a short link like Bit.ly too
|
18
7
|
|
19
|
-
#
|
8
|
+
- [Setup](#setup)
|
9
|
+
- [Installation](#installation)
|
10
|
+
- [Usage](#usage)
|
11
|
+
- [Configure the HTTP client](#configure-the-http-client)
|
12
|
+
- [Shorten a link](#shorten-a-link)
|
13
|
+
- [Shorten parameters](#shorten-parameters)
|
14
|
+
- [CHANGELOG](#changelog)
|
15
|
+
- [V1.0.5](#v105)
|
16
|
+
- [V1.0.3](#v103)
|
17
|
+
- [Development](#development)
|
18
|
+
- [Contributing](#contributing)
|
19
|
+
- [License](#license)
|
20
|
+
- [Code of Conduct](#code-of-conduct)
|
20
21
|
|
21
|
-
[](https://travis-ci.org/saiqulhaq/firebase_dynamic_link)
|
22
|
-
[](https://codeclimate.com/github/saiqulhaq/firebase_dynamic_link/maintainability)
|
23
|
-
[](https://codeclimate.com/github/saiqulhaq/firebase_dynamic_link/test_coverage)
|
24
|
-
[](https://badge.fury.io/rb/firebase_dynamic_link)
|
25
22
|
|
26
|
-
|
23
|
+
## Setup
|
27
24
|
|
28
|
-
|
25
|
+
Before you begin, you need to register at Firebase, and find following data:
|
26
|
+
1. Firebase API key
|
29
27
|
|
30
|
-
|
28
|
+
Open Open the Settings page of the Firebase console. If you are prompted to choose a project, select your Firebase project from the menu. The API key is a Web API Key field, you need to a note this key.
|
29
|
+
2. Dynamic Links domain
|
31
30
|
|
32
|
-
|
33
|
-
|
34
|
-
Ruby 2.3. However Bundler will install lower version if your ruby is 2.3. So there is nothing to worry about
|
31
|
+
In the Firebase console, open the Dynamic Links section, accept the terms of service if prompted, and copy the dynamic links host.
|
32
|
+
Usually it's like `https://xxx.page.link`. You can use your own custom domain to make it shorter. Reference: https://firebase.google.com/docs/dynamic-links/custom-domains
|
35
33
|
|
36
34
|
## Installation
|
37
35
|
|
@@ -56,10 +54,10 @@ Or install it yourself as:
|
|
56
54
|
# the adapter should be supported by Faraday
|
57
55
|
# more info look at https://github.com/lostisland/faraday/tree/master/test/adapters
|
58
56
|
# Faraday.default_adapter is the default adapter
|
59
|
-
config.adapter = :httpclient
|
57
|
+
config.adapter = :httpclient # optional, default is net_http
|
60
58
|
|
61
59
|
# required
|
62
|
-
config.api_key = 'API_KEY'
|
60
|
+
config.api_key = 'API_KEY' # required
|
63
61
|
|
64
62
|
# default 'UNGUESSABLE'
|
65
63
|
config.suffix_option = 'SHORT' or 'UNGUESSABLE'
|
@@ -68,7 +66,7 @@ Or install it yourself as:
|
|
68
66
|
config.dynamic_link_domain = 'https://xyz.app.goo.gl'
|
69
67
|
|
70
68
|
# default 3 seconds
|
71
|
-
config.timeout = 3
|
69
|
+
config.timeout = 3
|
72
70
|
|
73
71
|
# default 3 seconds
|
74
72
|
config.open_timeout = 3
|
@@ -76,19 +74,22 @@ Or install it yourself as:
|
|
76
74
|
```
|
77
75
|
|
78
76
|
### Shorten a link
|
77
|
+
This method shortens a link with up to the first parameter in tact. Use this method if you do not have more than one
|
78
|
+
parameter in the URL. Shortening an URL with more than one parameters will result in truncation of parameters after the
|
79
|
+
first one.
|
79
80
|
|
80
81
|
```ruby
|
81
82
|
client = FirebaseDynamicLink::Client.new
|
82
83
|
link = "http://domain.com/path/path"
|
83
84
|
options = {
|
84
|
-
# optional, to override default suffix default config
|
85
|
-
suffix_option: '',
|
85
|
+
# optional, to override default suffix default config
|
86
|
+
suffix_option: '',
|
86
87
|
|
87
88
|
# optional, to override default dynamic_link_domain default config
|
88
|
-
dynamic_link_domain: '',
|
89
|
+
dynamic_link_domain: '',
|
89
90
|
|
90
91
|
# optional, timeout of each request of this instance
|
91
|
-
timeout: 10,
|
92
|
+
timeout: 10,
|
92
93
|
|
93
94
|
# optional, open timeout of each request of this instance
|
94
95
|
open_timeout: 10
|
@@ -99,18 +100,20 @@ Or install it yourself as:
|
|
99
100
|
```
|
100
101
|
|
101
102
|
### Shorten parameters
|
103
|
+
This method allows shortening of an URL with multiple parameters.
|
102
104
|
|
103
105
|
```ruby
|
104
106
|
client = FirebaseDynamicLink::Client.new
|
107
|
+
link = "http://domain.com/path/path?key1=value1&key2=val2&key3=val3"
|
105
108
|
options = {
|
106
|
-
# optional, to override default suffix default config
|
107
|
-
suffix_option: '',
|
109
|
+
# optional, to override default suffix default config
|
110
|
+
suffix_option: '',
|
108
111
|
|
109
112
|
# optional, to override default dynamic_link_domain default config
|
110
|
-
dynamic_link_domain: '',
|
113
|
+
dynamic_link_domain: '',
|
111
114
|
|
112
115
|
# optional, timeout of each request of this instance
|
113
|
-
timeout: 10,
|
116
|
+
timeout: 10,
|
114
117
|
|
115
118
|
# optional, open timeout of each request of this instance
|
116
119
|
open_timeout: 10
|
@@ -120,7 +123,7 @@ Or install it yourself as:
|
|
120
123
|
link: link,
|
121
124
|
android_info: {
|
122
125
|
android_package_name: name,
|
123
|
-
}
|
126
|
+
},
|
124
127
|
ios_info: {},
|
125
128
|
navigation_info: {},
|
126
129
|
analytics_info: {},
|
@@ -131,21 +134,22 @@ Or install it yourself as:
|
|
131
134
|
result = client.shorten_parameters(parameters, options)
|
132
135
|
```
|
133
136
|
|
134
|
-
|
137
|
+
If request successful, then the result should be like following hash object
|
135
138
|
|
136
|
-
|
139
|
+
Or if the request reached daily quota, client will throw `FirebaseDynamicLink::QuotaExceeded` error
|
137
140
|
|
138
141
|
```ruby
|
139
|
-
{
|
140
|
-
:link=>"https://--.app.goo.gl/ukph",
|
141
|
-
:preview_link=>"https://--.app.goo.gl/ukph?d=1",
|
142
|
+
{
|
143
|
+
:link=>"https://--.app.goo.gl/ukph",
|
144
|
+
:preview_link=>"https://--.app.goo.gl/ukph?d=1",
|
142
145
|
:warning=>[
|
143
|
-
{
|
146
|
+
{
|
144
147
|
"warningCode"=>"UNRECOGNIZED_PARAM",
|
145
|
-
"warningMessage"=>"..."
|
148
|
+
"warningMessage"=>"..."
|
149
|
+
},
|
146
150
|
{
|
147
151
|
"warningCode"=>"..."
|
148
|
-
},
|
152
|
+
},
|
149
153
|
{
|
150
154
|
"warningCode"=>"..."
|
151
155
|
}
|
@@ -153,18 +157,24 @@ or if the request reached daily quota, client will throw `FirebaseDynamicLink::Q
|
|
153
157
|
}
|
154
158
|
```
|
155
159
|
|
156
|
-
|
160
|
+
Otherwise it will throw `FirebaseDynamicLink::ConnectionError` error, with message = http error message
|
161
|
+
|
162
|
+
## CHANGELOG
|
157
163
|
|
158
|
-
|
164
|
+
### V1.0.5
|
159
165
|
|
160
|
-
|
166
|
+
* Update minimum ruby version from 2.6 to 3.0
|
167
|
+
* Update Dry-configurable minimum version to 0.9
|
168
|
+
* Update Faraday version from v0.16 upto v2.0.0
|
161
169
|
|
162
|
-
|
163
|
-
|
170
|
+
### V1.0.3
|
171
|
+
Update Dry-configurable dependencies to version 0.6.0
|
164
172
|
|
165
173
|
## Development
|
166
174
|
|
167
|
-
After checking out the repo, run `bin/setup` to install dependencies.
|
175
|
+
After checking out the repo, run `bin/setup` to install dependencies.
|
176
|
+
Copy `.env.template` to `.env` and update the values.
|
177
|
+
Then, run `bundle exec appraisal install && bundle exec appraisal rspec` to run the tests.
|
168
178
|
|
169
179
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
170
180
|
|
data/Rakefile
CHANGED
data/bin/bundle-audit
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'bundle-audit' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path('bundle', __dir__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require 'rubygems'
|
27
|
+
require 'bundler/setup'
|
28
|
+
|
29
|
+
load Gem.bin_path('bundler-audit', 'bundle-audit')
|
data/bin/bundler-audit
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'bundler-audit' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require 'pathname'
|
12
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path('bundle', __dir__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require 'rubygems'
|
27
|
+
require 'bundler/setup'
|
28
|
+
|
29
|
+
load Gem.bin_path('bundler-audit', 'bundler-audit')
|
data/bin/console
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require
|
5
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'firebase_dynamic_link'
|
6
6
|
|
7
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
8
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -11,5 +11,5 @@ require "firebase_dynamic_link"
|
|
11
11
|
# require "pry"
|
12
12
|
# Pry.start
|
13
13
|
|
14
|
-
require
|
14
|
+
require 'irb'
|
15
15
|
IRB.start(__FILE__)
|
data/docker-compose.yml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
version: '2'
|
2
|
+
|
3
|
+
services:
|
4
|
+
app:
|
5
|
+
tty: true # Enables debugging capabilities when attached to this container.
|
6
|
+
image: bitnami/ruby:3.0
|
7
|
+
# command: "sh -c 'bundle install && bundle exec rspec'"
|
8
|
+
volumes:
|
9
|
+
- .:/app # docker run -it --name ruby bitnami/ruby:2.7-prod
|
@@ -1,40 +1,43 @@
|
|
1
|
-
|
2
1
|
# frozen_string_literal: true
|
3
2
|
|
4
|
-
lib = File.expand_path(
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
5
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
6
|
-
require
|
5
|
+
require 'firebase_dynamic_link/version'
|
7
6
|
|
8
7
|
Gem::Specification.new do |spec|
|
9
|
-
spec.name =
|
8
|
+
spec.name = 'firebase_dynamic_link'
|
10
9
|
spec.version = FirebaseDynamicLink::VERSION
|
11
|
-
spec.authors = [
|
12
|
-
spec.email = [
|
10
|
+
spec.authors = ['M Saiqul Haq']
|
11
|
+
spec.email = ['saiqulhaq@gmail.com']
|
13
12
|
|
14
|
-
spec.summary =
|
15
|
-
spec.description =
|
16
|
-
spec.homepage =
|
17
|
-
spec.license =
|
18
|
-
spec.metadata[
|
13
|
+
spec.summary = 'Create a short link or deep link'
|
14
|
+
spec.description = 'Create deep link for web and mobile app using Firebase Dynamic Links service'
|
15
|
+
spec.homepage = 'https://github.com/saiqulhaq/firebase_dynamic_link'
|
16
|
+
spec.license = 'MIT'
|
17
|
+
spec.metadata['yard.run'] = 'yri'
|
19
18
|
|
20
19
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
21
20
|
f.match(%r{^(test|spec|features)/})
|
22
21
|
end
|
23
|
-
spec.bindir =
|
22
|
+
spec.bindir = 'exe'
|
24
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
-
spec.require_paths = [
|
24
|
+
spec.require_paths = ['lib']
|
26
25
|
|
27
|
-
spec.add_runtime_dependency
|
28
|
-
spec.add_runtime_dependency
|
29
|
-
spec.add_runtime_dependency
|
26
|
+
spec.add_runtime_dependency 'case_transform2', '>= 1.0', '< 2.0'
|
27
|
+
spec.add_runtime_dependency 'dry-configurable', '>= 0.9', '< 1.0'
|
28
|
+
spec.add_runtime_dependency 'faraday', '>= 0.16', '< 3.0'
|
29
|
+
spec.add_runtime_dependency 'faraday-net_http', '>= 1.0', '< 2.0'
|
30
30
|
|
31
|
-
spec.add_development_dependency
|
32
|
-
spec.add_development_dependency
|
33
|
-
spec.add_development_dependency
|
34
|
-
spec.add_development_dependency
|
35
|
-
spec.add_development_dependency
|
36
|
-
spec.add_development_dependency
|
37
|
-
spec.add_development_dependency
|
38
|
-
spec.add_development_dependency
|
39
|
-
spec.add_development_dependency
|
31
|
+
spec.add_development_dependency 'appraisal', '~> 2.4.1'
|
32
|
+
spec.add_development_dependency 'bootsnap', '~> 1.9.3'
|
33
|
+
spec.add_development_dependency 'bundle-audit', '~> 0.1.0'
|
34
|
+
spec.add_development_dependency 'bundler', '>= 2.0'
|
35
|
+
spec.add_development_dependency 'dotenv', '~> 2.2', '>= 2.2.2'
|
36
|
+
spec.add_development_dependency 'pry', '~> 0.14.1'
|
37
|
+
spec.add_development_dependency 'rake', '>= 12.3.3'
|
38
|
+
spec.add_development_dependency 'rspec', '~> 3.10.0'
|
39
|
+
spec.add_development_dependency 'rubocop', '~> 1.22'
|
40
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 2.5.0'
|
41
|
+
spec.add_development_dependency 'simplecov', '~> 0.17.1'
|
42
|
+
spec.add_development_dependency 'vcr', '~> 4.0', '>= 4.0.0'
|
40
43
|
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
firebase_dynamic_link (1.0.4)
|
5
|
+
case_transform2 (>= 1.0, < 2.0)
|
6
|
+
dry-configurable (>= 0.6, < 1.0)
|
7
|
+
faraday (>= 0.16, < 3.0)
|
8
|
+
faraday-net_http (>= 1.0, < 2.0)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
appraisal (2.4.1)
|
14
|
+
bundler
|
15
|
+
rake
|
16
|
+
thor (>= 0.14.0)
|
17
|
+
bootsnap (1.9.3)
|
18
|
+
msgpack (~> 1.0)
|
19
|
+
case_transform2 (1.1.1)
|
20
|
+
coderay (1.1.3)
|
21
|
+
concurrent-ruby (1.1.9)
|
22
|
+
diff-lcs (1.4.4)
|
23
|
+
docile (1.4.0)
|
24
|
+
dotenv (2.7.6)
|
25
|
+
dry-configurable (0.11.6)
|
26
|
+
concurrent-ruby (~> 1.0)
|
27
|
+
dry-core (~> 0.4, >= 0.4.7)
|
28
|
+
dry-equalizer (~> 0.2)
|
29
|
+
dry-core (0.7.1)
|
30
|
+
concurrent-ruby (~> 1.0)
|
31
|
+
dry-equalizer (0.3.0)
|
32
|
+
faraday (0.16.2)
|
33
|
+
multipart-post (>= 1.2, < 3)
|
34
|
+
faraday-net_http (1.0.1)
|
35
|
+
method_source (1.0.0)
|
36
|
+
msgpack (1.4.2)
|
37
|
+
multipart-post (2.1.1)
|
38
|
+
pry (0.14.1)
|
39
|
+
coderay (~> 1.1)
|
40
|
+
method_source (~> 1.0)
|
41
|
+
rake (13.0.6)
|
42
|
+
rspec (3.10.0)
|
43
|
+
rspec-core (~> 3.10.0)
|
44
|
+
rspec-expectations (~> 3.10.0)
|
45
|
+
rspec-mocks (~> 3.10.0)
|
46
|
+
rspec-core (3.10.1)
|
47
|
+
rspec-support (~> 3.10.0)
|
48
|
+
rspec-expectations (3.10.1)
|
49
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
+
rspec-support (~> 3.10.0)
|
51
|
+
rspec-mocks (3.10.2)
|
52
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
53
|
+
rspec-support (~> 3.10.0)
|
54
|
+
rspec-support (3.10.3)
|
55
|
+
simplecov (0.21.2)
|
56
|
+
docile (~> 1.1)
|
57
|
+
simplecov-html (~> 0.11)
|
58
|
+
simplecov_json_formatter (~> 0.1)
|
59
|
+
simplecov-html (0.12.3)
|
60
|
+
simplecov_json_formatter (0.1.3)
|
61
|
+
thor (1.1.0)
|
62
|
+
vcr (4.0.0)
|
63
|
+
|
64
|
+
PLATFORMS
|
65
|
+
x86_64-linux
|
66
|
+
|
67
|
+
DEPENDENCIES
|
68
|
+
appraisal (~> 2.4.1)
|
69
|
+
bootsnap (~> 1.9.3)
|
70
|
+
bundler (>= 2.0)
|
71
|
+
dotenv (~> 2.2, >= 2.2.2)
|
72
|
+
dry-configurable (= 0.11.6)
|
73
|
+
faraday (= 0.16.2)
|
74
|
+
firebase_dynamic_link!
|
75
|
+
pry (~> 0.14.1)
|
76
|
+
rake (>= 12.3.3)
|
77
|
+
rspec (~> 3.10.0)
|
78
|
+
simplecov (>= 0.16.1)
|
79
|
+
vcr (~> 4.0, >= 4.0.0)
|
80
|
+
|
81
|
+
BUNDLED WITH
|
82
|
+
2.2.32
|
@@ -0,0 +1,80 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
firebase_dynamic_link (1.0.4)
|
5
|
+
case_transform2 (>= 1.0, < 2.0)
|
6
|
+
dry-configurable (>= 0.6, < 1.0)
|
7
|
+
faraday (>= 0.16, < 3.0)
|
8
|
+
faraday-net_http (>= 1.0, < 2.0)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
appraisal (2.4.1)
|
14
|
+
bundler
|
15
|
+
rake
|
16
|
+
thor (>= 0.14.0)
|
17
|
+
bootsnap (1.9.3)
|
18
|
+
msgpack (~> 1.0)
|
19
|
+
case_transform2 (1.1.1)
|
20
|
+
coderay (1.1.3)
|
21
|
+
concurrent-ruby (1.1.9)
|
22
|
+
diff-lcs (1.4.4)
|
23
|
+
docile (1.4.0)
|
24
|
+
dotenv (2.7.6)
|
25
|
+
dry-configurable (0.12.1)
|
26
|
+
concurrent-ruby (~> 1.0)
|
27
|
+
dry-core (~> 0.5, >= 0.5.0)
|
28
|
+
dry-core (0.7.1)
|
29
|
+
concurrent-ruby (~> 1.0)
|
30
|
+
faraday (0.16.2)
|
31
|
+
multipart-post (>= 1.2, < 3)
|
32
|
+
faraday-net_http (1.0.1)
|
33
|
+
method_source (1.0.0)
|
34
|
+
msgpack (1.4.2)
|
35
|
+
multipart-post (2.1.1)
|
36
|
+
pry (0.14.1)
|
37
|
+
coderay (~> 1.1)
|
38
|
+
method_source (~> 1.0)
|
39
|
+
rake (13.0.6)
|
40
|
+
rspec (3.10.0)
|
41
|
+
rspec-core (~> 3.10.0)
|
42
|
+
rspec-expectations (~> 3.10.0)
|
43
|
+
rspec-mocks (~> 3.10.0)
|
44
|
+
rspec-core (3.10.1)
|
45
|
+
rspec-support (~> 3.10.0)
|
46
|
+
rspec-expectations (3.10.1)
|
47
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
+
rspec-support (~> 3.10.0)
|
49
|
+
rspec-mocks (3.10.2)
|
50
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
+
rspec-support (~> 3.10.0)
|
52
|
+
rspec-support (3.10.3)
|
53
|
+
simplecov (0.21.2)
|
54
|
+
docile (~> 1.1)
|
55
|
+
simplecov-html (~> 0.11)
|
56
|
+
simplecov_json_formatter (~> 0.1)
|
57
|
+
simplecov-html (0.12.3)
|
58
|
+
simplecov_json_formatter (0.1.3)
|
59
|
+
thor (1.1.0)
|
60
|
+
vcr (4.0.0)
|
61
|
+
|
62
|
+
PLATFORMS
|
63
|
+
x86_64-linux
|
64
|
+
|
65
|
+
DEPENDENCIES
|
66
|
+
appraisal (~> 2.4.1)
|
67
|
+
bootsnap (~> 1.9.3)
|
68
|
+
bundler (>= 2.0)
|
69
|
+
dotenv (~> 2.2, >= 2.2.2)
|
70
|
+
dry-configurable (= 0.12.1)
|
71
|
+
faraday (= 0.16.2)
|
72
|
+
firebase_dynamic_link!
|
73
|
+
pry (~> 0.14.1)
|
74
|
+
rake (>= 12.3.3)
|
75
|
+
rspec (~> 3.10.0)
|
76
|
+
simplecov (>= 0.16.1)
|
77
|
+
vcr (~> 4.0, >= 4.0.0)
|
78
|
+
|
79
|
+
BUNDLED WITH
|
80
|
+
2.2.32
|
@@ -0,0 +1,80 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
firebase_dynamic_link (1.0.4)
|
5
|
+
case_transform2 (>= 1.0, < 2.0)
|
6
|
+
dry-configurable (>= 0.6, < 1.0)
|
7
|
+
faraday (>= 0.16, < 3.0)
|
8
|
+
faraday-net_http (>= 1.0, < 2.0)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
appraisal (2.4.1)
|
14
|
+
bundler
|
15
|
+
rake
|
16
|
+
thor (>= 0.14.0)
|
17
|
+
bootsnap (1.9.3)
|
18
|
+
msgpack (~> 1.0)
|
19
|
+
case_transform2 (1.1.1)
|
20
|
+
coderay (1.1.3)
|
21
|
+
concurrent-ruby (1.1.9)
|
22
|
+
diff-lcs (1.4.4)
|
23
|
+
docile (1.4.0)
|
24
|
+
dotenv (2.7.6)
|
25
|
+
dry-configurable (0.13.0)
|
26
|
+
concurrent-ruby (~> 1.0)
|
27
|
+
dry-core (~> 0.6)
|
28
|
+
dry-core (0.7.1)
|
29
|
+
concurrent-ruby (~> 1.0)
|
30
|
+
faraday (0.16.2)
|
31
|
+
multipart-post (>= 1.2, < 3)
|
32
|
+
faraday-net_http (1.0.1)
|
33
|
+
method_source (1.0.0)
|
34
|
+
msgpack (1.4.2)
|
35
|
+
multipart-post (2.1.1)
|
36
|
+
pry (0.14.1)
|
37
|
+
coderay (~> 1.1)
|
38
|
+
method_source (~> 1.0)
|
39
|
+
rake (13.0.6)
|
40
|
+
rspec (3.10.0)
|
41
|
+
rspec-core (~> 3.10.0)
|
42
|
+
rspec-expectations (~> 3.10.0)
|
43
|
+
rspec-mocks (~> 3.10.0)
|
44
|
+
rspec-core (3.10.1)
|
45
|
+
rspec-support (~> 3.10.0)
|
46
|
+
rspec-expectations (3.10.1)
|
47
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
+
rspec-support (~> 3.10.0)
|
49
|
+
rspec-mocks (3.10.2)
|
50
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
+
rspec-support (~> 3.10.0)
|
52
|
+
rspec-support (3.10.3)
|
53
|
+
simplecov (0.21.2)
|
54
|
+
docile (~> 1.1)
|
55
|
+
simplecov-html (~> 0.11)
|
56
|
+
simplecov_json_formatter (~> 0.1)
|
57
|
+
simplecov-html (0.12.3)
|
58
|
+
simplecov_json_formatter (0.1.3)
|
59
|
+
thor (1.1.0)
|
60
|
+
vcr (4.0.0)
|
61
|
+
|
62
|
+
PLATFORMS
|
63
|
+
x86_64-linux
|
64
|
+
|
65
|
+
DEPENDENCIES
|
66
|
+
appraisal (~> 2.4.1)
|
67
|
+
bootsnap (~> 1.9.3)
|
68
|
+
bundler (>= 2.0)
|
69
|
+
dotenv (~> 2.2, >= 2.2.2)
|
70
|
+
dry-configurable (= 0.13.0)
|
71
|
+
faraday (= 0.16.2)
|
72
|
+
firebase_dynamic_link!
|
73
|
+
pry (~> 0.14.1)
|
74
|
+
rake (>= 12.3.3)
|
75
|
+
rspec (~> 3.10.0)
|
76
|
+
simplecov (>= 0.16.1)
|
77
|
+
vcr (~> 4.0, >= 4.0.0)
|
78
|
+
|
79
|
+
BUNDLED WITH
|
80
|
+
2.2.32
|