firebase_token_authentication 0.1.1 → 0.1.2

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: fccac7a68e10852f5f4a3816188916b861ea38ba4853395a63f16bfca04c4972
4
- data.tar.gz: 24fbefd4c6fc9fd7a210512c878d32df4ad30be0965cf4efc70a28e20595f29e
3
+ metadata.gz: 3b29fc1111c7fff037deb9fbb44bb70adfd351b7d7b7aec6ec946cd69df2340d
4
+ data.tar.gz: '090f660a4e7ed23d1f9462d904d3692018d12d9183a335ac398452fe993fcf94'
5
5
  SHA512:
6
- metadata.gz: 9d4dfddec1b2fd1963f633c1882d796ee9494e5aafc635af87da397a72158a122266ba45906486cf14fe7f8bdd6dae88a66ce5a61f8d14adb7418785e23bca02
7
- data.tar.gz: c9ac2f001017ddce1856f1aa478eac905cc2dc6d48dd65fc4177b2476918ca5eb446395159698c3d76d5f7e3f1f58aa963718b6cc2b3deee8edfac9fe49b8d35
6
+ metadata.gz: 994d283aa09db2ef7535e4aa00c2373c974ce0031dcb631c8e621832ca53d1a1a9c479b0f664e7d90c972c6a27812a2ac2ea36d6857ef7c663e3d834f26ec90b
7
+ data.tar.gz: 719133a4a3fd6ab2f18359b96eab16af3e8b3003dadb8180459bc29a93e6a5533362e6af05ea37391510048539acffc77b0056ebc144835df9079db082f4a814
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- firebase_auth (0.1.0)
4
+ firebase_token_authentication (0.1.1)
5
5
  faraday
6
6
  faraday-http-cache
7
7
  jwt
@@ -71,7 +71,7 @@ PLATFORMS
71
71
 
72
72
  DEPENDENCIES
73
73
  debug
74
- firebase_auth!
74
+ firebase_token_authentication!
75
75
  rake (~> 13.0)
76
76
  rspec (~> 3.0)
77
77
  rubocop (~> 1.21)
@@ -7,6 +7,7 @@ module FirebaseTokenAuthentication
7
7
  def initialize
8
8
  @cache_store = nil
9
9
  @firebase_project_id = nil
10
+ @logger = nil
10
11
  end
11
12
  end
12
13
  end
@@ -16,7 +16,9 @@ module FirebaseTokenAuthentication
16
16
 
17
17
  def fetch_certificates
18
18
  client = Faraday.new do |builder|
19
- builder.use Faraday::HttpCache, store: FirebaseTokenAuthentication.config.cache_store
19
+ builder.use Faraday::HttpCache,
20
+ store: FirebaseTokenAuthentication.config.cache_store,
21
+ logger: FirebaseTokenAuthentication.config.logger,
20
22
  builder.adapter Faraday.default_adapter
21
23
  end
22
24
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FirebaseTokenAuthentication
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firebase_token_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Fuller