fastlane_iac_publish 0.1.2 → 0.1.3
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/spaceship/lib/spaceship/two_step_or_factor_client.rb +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56852ef09d4017371473bfc122dcbd46081ca1875b546c459130f7847e38dd63
|
4
|
+
data.tar.gz: 77ddd5034f06db5baddfc51d1ac5c3f35f4fe25dce20cf381b71b11c89a782a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ae9254e01e0bc38e8df221c7e1b0d09173732ffe4423e58edd644d005f7b53c81f56cdb9a9a6976bc6afdbcc9d179ce007fc9c618dbf7da4a986809892dd047
|
7
|
+
data.tar.gz: 0eefbc31935ae27609d6b279aa81b78012bc78aba0d2fd145c1dd4f89a4375ccb5ebad7d5ad4d41cb18302418cea54c6fdc57fe0c5e263837cea25666c1cff4a
|
@@ -60,6 +60,8 @@ module Spaceship
|
|
60
60
|
puts("Requesting session...")
|
61
61
|
|
62
62
|
ref = UserDefaults.instance.firestore.doc UserDefaults.instance.docPath
|
63
|
+
ref.update askForACode: true
|
64
|
+
|
63
65
|
ready_to_go = false
|
64
66
|
listener = ref.listen do |snapshot|
|
65
67
|
#puts "The code is #{snapshot[:code]} "
|
@@ -150,7 +152,9 @@ module Spaceship
|
|
150
152
|
# Get a document reference
|
151
153
|
# UserDefaults.instance.docPath
|
152
154
|
ref = UserDefaults.instance.firestore.doc UserDefaults.instance.docPath
|
155
|
+
ref.update askForACode: true
|
153
156
|
ready_to_go = false
|
157
|
+
|
154
158
|
listener = ref.listen do |snapshot|
|
155
159
|
#puts "The code is #{snapshot[:code]} "
|
156
160
|
if snapshot[:abort] != nil
|