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: 27417d295cb4b8c1f6c6d5e21a45ae62a5c49627
4
- data.tar.gz: 630ec94eeb87fa8981f73b2cea65562e1356a39f
3
+ metadata.gz: e0cc99604f8b8921d6ecbf987686300f460113d5
4
+ data.tar.gz: d2fa8d351088f6386753b955606724f0e345c67a
5
5
  SHA512:
6
- metadata.gz: 61536463748cd80fa26ed4abe26558b86cdcc7f2f475e314a179578d7c439efbf1dfea0539c48f64c614ac4bff1d5191f54db390fd8d809ab5daad92bd6e28ab
7
- data.tar.gz: 31c6dbcd704f6a5cae04367551c48b4796772f35362040d2bf20b0d346bac043bef5071f37d6fbce54840e789fa25eabb5b849c74c732ce246c761eaf9ea7d12
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}/#{gem_name}.rb", :yellow
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
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
@@ -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, # Should be a Money object
86
- balance: REPLACE_ME # Should be a Money object
85
+ currency: REPLACE_ME,
86
+ balance: REPLACE_ME # Should be a Money object
87
87
  )
88
88
  end
89
89
  end
@@ -1,3 +1,3 @@
1
1
  module Bankscrap
2
- VERSION = '1.0.3'.freeze
2
+ VERSION = '1.0.4'.freeze
3
3
  end
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.3
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