instant_quote 1.7.3 → 1.7.4
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/Gemfile.lock +1 -1
- data/lib/instant_quote/adapter.rb +4 -4
- data/lib/instant_quote/version.rb +1 -1
- 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: 15d07ba008846c863937a179a6d330833031b4291a595f30bf0701980a3c1bc0
|
|
4
|
+
data.tar.gz: 102ede083d49fc37c21ab29277e8eed0433fe4961dca1bffb9576c641b002894
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00b3e2c8bb67d19a2e2be46bd261404bf0763a2876d1a32fbdd1bcbe8f584759485c3566d7c049a511958ae0a02c8cd4c7a6987647d822e1715e62196b8af315
|
|
7
|
+
data.tar.gz: 4c85a4d8f1d65aae349b62c2defb1d01e5342444ed2a345da25b3f7e27d0e77a37a08d947e9c2a743f4d80e9c511c2e77797385bad1bb2442cb8c8a08ccc71ea
|
data/Gemfile.lock
CHANGED
|
@@ -51,14 +51,14 @@ module InstantQuote
|
|
|
51
51
|
raise NotImplementedError, "You must implement '#{self.class.name}#get_status'"
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
# Default for pre approval will be
|
|
54
|
+
# Default for pre approval will be success, override it in the adapter class if needed.
|
|
55
55
|
def get_preapproval(_params, _connection)
|
|
56
|
-
true
|
|
56
|
+
OpenStruct.new(success?: true)
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
# Default for approval will be
|
|
59
|
+
# Default for approval will be success, override it in the adapter class if needed.
|
|
60
60
|
def get_approval(_application_id, _connection)
|
|
61
|
-
true
|
|
61
|
+
OpenStruct.new(success?: true)
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
end
|