has_accounts 0.12.0 → 0.13.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.
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 [name of plugin creator]
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,57 @@
1
+ # German locale
2
+ de:
3
+ activerecord:
4
+ models:
5
+ account: Konto
6
+ bank_account: Bankkonto
7
+ bank: Bank
8
+ account_type: Kontentyp
9
+ booking: Buchung
10
+
11
+ attributes:
12
+ account:
13
+ code: Nummer
14
+ title: Titel
15
+ saldo: Saldo
16
+ account_type: Kontentyp
17
+ bank:
18
+ clearing: Clearing-Nr.
19
+ swift: SWIFT-Nr.
20
+ account_type:
21
+ name: Name
22
+ title: Titel
23
+ booking:
24
+ code: Belegnr.
25
+ value_date: Valutadatum
26
+ title: Titel
27
+ amount: Betrag
28
+ comments: Bemerkungen
29
+ credit_account: Soll
30
+ debit_account: Haben
31
+ reference: Referenz
32
+ reference_type: Referenz Typ
33
+ reference_id: Referenz ID
34
+ text: Text
35
+ date: Datum
36
+ balance: Saldo
37
+ edit: Editieren
38
+ destroy: Löschen
39
+ valuta: Valuta
40
+ value: Betrag
41
+
42
+ # Title customizations
43
+ account:
44
+ index:
45
+ title: Konti
46
+ bank_account:
47
+ index:
48
+ title: Bankkonti
49
+ bank:
50
+ index:
51
+ title: Banken
52
+ account_type:
53
+ index:
54
+ title: Kontentypen
55
+ booking:
56
+ index:
57
+ title: Buchungsjournal
@@ -1,3 +1,3 @@
1
1
  module HasAccounts
2
- VERSION = "0.12.0"
2
+ VERSION = "0.13.0"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: has_accounts
3
3
  version: !ruby/object:Gem::Version
4
- hash: 47
5
- prerelease:
4
+ hash: 43
5
+ prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 12
8
+ - 13
9
9
  - 0
10
- version: 0.12.0
10
+ version: 0.13.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Simon H\xC3\xBCrlimann (CyT)"
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-23 00:00:00 +02:00
18
+ date: 2011-11-04 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -27,6 +27,7 @@ executables: []
27
27
  extensions: []
28
28
 
29
29
  extra_rdoc_files:
30
+ - MIT-LICENSE
30
31
  - README.md
31
32
  files:
32
33
  - app/models/account.rb
@@ -35,6 +36,7 @@ files:
35
36
  - app/models/bank.rb
36
37
  - app/models/bank_account.rb
37
38
  - app/models/booking.rb
39
+ - config/locales/de.yml
38
40
  - lib/generators/has_accounts/migration_generator.rb
39
41
  - lib/generators/has_accounts/templates/migration.rb
40
42
  - lib/has_accounts.rb
@@ -43,11 +45,12 @@ files:
43
45
  - lib/has_accounts/model.rb
44
46
  - lib/has_accounts/railtie.rb
45
47
  - lib/has_accounts/version.rb
48
+ - MIT-LICENSE
46
49
  - README.md
47
50
  has_rdoc: true
48
51
  homepage: https://github.com/huerlisi/has_accounts
49
- licenses: []
50
-
52
+ licenses:
53
+ - MIT
51
54
  post_install_message:
52
55
  rdoc_options: []
53
56
 
@@ -74,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
77
  requirements: []
75
78
 
76
79
  rubyforge_project:
77
- rubygems_version: 1.5.2
80
+ rubygems_version: 1.3.7
78
81
  signing_key:
79
82
  specification_version: 3
80
83
  summary: HasAccounts provides models for financial accounting.