bankscrap 1.0.3 → 1.0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0cc99604f8b8921d6ecbf987686300f460113d5
|
|
4
|
+
data.tar.gz: d2fa8d351088f6386753b955606724f0e345c67a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 564a3bb5e22a61f54254fe82f853a2b4bfcf3f356c6930940241e25d028d20bae5467ab0db06faaadfce30c7c0fa79e699d9c31c54d1f6126e09d64edd3b6927
|
|
7
|
+
data.tar.gz: 8c51bff3b08ab398e3b30d052dceff1d181dc1ae9b081f70f188c2044832e997d522f174e127a2ae7081dbf478344fde943f135bb0e52ebb5d0587ab399183e1
|
data/README.md
CHANGED
|
@@ -11,6 +11,7 @@ Feel free to contribute and add your bank if it isn't supported.
|
|
|
11
11
|
* **BBVA** (personal accounts): [bankscrap-bbva](https://github.com/bankscrap/bankscrap-bbva)
|
|
12
12
|
* **BBVA Net Cash** (business accounts): [bankscrap-bbva-net-cash](https://github.com/bankscrap/bankscrap-bbva-net-cash)
|
|
13
13
|
* **ING Direct**: [bankscrap-ing](https://github.com/bankscrap/bankscrap-ing)
|
|
14
|
+
* **Arquia Banca**: [bankscrap-arquia](https://github.com/bankscrap/bankscrap-arquia)
|
|
14
15
|
* **Banc Sabadell** (WIP): [bankscrap-banc-sabadell](https://github.com/bankscrap/bankscrap-banc-sabadell)
|
|
15
16
|
|
|
16
17
|
Interested in any other bank? Open a new Issue and we'll try to help.
|
|
@@ -16,7 +16,7 @@ module Bankscrap
|
|
|
16
16
|
say "Great! Now you can start implementing your bank's adapter for Bankscrap.", :yellow
|
|
17
17
|
say ""
|
|
18
18
|
say "To get started take a look to:", :yellow
|
|
19
|
-
say "#{destination_root}/#{
|
|
19
|
+
say "#{destination_root}/lib/bankscrap/#{bank_name_dasherized}/bank.rb", :yellow
|
|
20
20
|
say ""
|
|
21
21
|
say "If you need help you can join our Slack chat room. Click the Slack badge on Github:", :yellow
|
|
22
22
|
say "https://github.com/bankscrap/bankscrap", :yellow
|
|
@@ -79,11 +79,11 @@ module Bankscrap
|
|
|
79
79
|
Transaction.new(
|
|
80
80
|
account: account,
|
|
81
81
|
id: REPLACE_ME,
|
|
82
|
-
amount: REPLACE_ME,
|
|
82
|
+
amount: REPLACE_ME, # Should be a Money object
|
|
83
83
|
description: REPLACE_ME,
|
|
84
84
|
effective_date: REPLACE_ME,
|
|
85
|
-
currency: REPLACE_ME,
|
|
86
|
-
balance: REPLACE_ME
|
|
85
|
+
currency: REPLACE_ME,
|
|
86
|
+
balance: REPLACE_ME # Should be a Money object
|
|
87
87
|
)
|
|
88
88
|
end
|
|
89
89
|
end
|
data/lib/bankscrap/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bankscrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Javier Cuevas
|
|
@@ -142,6 +142,7 @@ files:
|
|
|
142
142
|
- bin/bankscrap
|
|
143
143
|
- generators/adapter_generator.rb
|
|
144
144
|
- generators/templates/%gem_name%.gemspec.tt
|
|
145
|
+
- generators/templates/.gitignore
|
|
145
146
|
- generators/templates/Gemfile.tt
|
|
146
147
|
- generators/templates/LICENSE.txt
|
|
147
148
|
- generators/templates/README.md.tt
|