Skip to content

Commit

Permalink
removed .idea, fixed typos in README, added Deutsche Bank example
Browse files Browse the repository at this point in the history
  • Loading branch information
yeah committed Sep 25, 2010
1 parent 91bd45d commit da2f5f8
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 634 deletions.
7 changes: 0 additions & 7 deletions .idea/.rakeTasks

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/aq-ruby.iml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/dictionaries/manu.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/encodings.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/vcs.xml

This file was deleted.

571 changes: 0 additions & 571 deletions .idea/workspace.xml

This file was deleted.

6 changes: 3 additions & 3 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
configured the correct shell command in config/environment.yaml
* configure all accounts in config/accounts.yaml (use config/accounts_example.yaml as template)
* run rake aqbanking:setup once to prepare your system for your configured accounts
* run rake aqbaning:cleanup to delete all configured account from your local system
* run rake aqbanking:cleanup to delete all configured account from your local system
* use account tags names as configured in config/accounts.yaml to create new account objects
Account.new("my_account")

=== Example

* Request all transactions from 2010/01/01 to 2010/05/30

my_business_account = Account.new("business")
my_business_account.transactions(Date.new(2010,1,1),Date.new(2010,5,30)
my_business_account = AqBanking::Account.new("business")
my_business_account.transactions(Date.new(2010,1,1),Date.new(2010,5,30))

* returns an array of AqBanking::Transaction Objects

Expand Down
10 changes: 5 additions & 5 deletions config/accounts_example.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
business:
bank_code: 11111111
user_id: 22222222
customer_id: 33333333
account_id: 77777777
bank_code: 11111111 # Deutsche Bank Berlin: <Bankleitzahl>
user_id: 22222222 # Deutsche Bank Berlin: <Filialnr.><Kontonr.><Unterkontonr. (z.B. 00)>
customer_id: 33333333 # Deutsche Bank Berlin: <Filialnr.><Kontonr.>
account_id: 77777777 # Deutsche Bank Berlin: <Kontonr.><Unterkontonr. (z.B. 00)>
user_name: Dagobert Duck
server_url: https://my.bank.de
server_url: https://my.bank.de # Deutsche Bank Berlin: https://fints.deutsche-bank.de
hbci_version: 220
pin: secret
private:
Expand Down

0 comments on commit da2f5f8

Please sign in to comment.