starkbank 2.14.0 → 2.15.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/lib/starkbank.rb +1 -1
- data/lib/transaction/transaction.rb +2 -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: f5c716796c5ce60e3f065000e5ac2e7674ea8812855a24910f26deeb313b6933
|
4
|
+
data.tar.gz: 0b72502f7e39c117b385309f93a57509e8ad774c2ee64f8b927e82d754b531e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2169099ef5065b376902e32c35eef16c41d1fb35b168650f8331bd8e7eef0c0116e1ec79e32b456cc321b69c78d7986243a283f92d7318e83d4f2ab688177a04
|
7
|
+
data.tar.gz: 49d1759fda5281d257a1104a761dd2a27100757aaf10dc4561adc72c2a75070b1cbef3587a5e8d3eec622b9b1672c3eb1ee01735252d9df0eadb37b73de07e56
|
data/lib/starkbank.rb
CHANGED
@@ -47,6 +47,7 @@ module StarkBank
|
|
47
47
|
@created = StarkCore::Utils::Checks.check_datetime(created)
|
48
48
|
end
|
49
49
|
|
50
|
+
# # DEPRECATED: Function deprecated since v2.15.0
|
50
51
|
# # Create Transactions
|
51
52
|
#
|
52
53
|
# Send a list of Transaction objects for creation in the Stark Bank API
|
@@ -60,7 +61,7 @@ module StarkBank
|
|
60
61
|
# ## Return:
|
61
62
|
# - list of Transaction objects with updated attributes
|
62
63
|
def self.create(transactions, user: nil)
|
63
|
-
|
64
|
+
raise "Function deprecated since v2.15.0"
|
64
65
|
end
|
65
66
|
|
66
67
|
# # Retrieve a specific Transaction
|