lohnsteuer 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37285bab368ba5fcad755ec6d2c4e959f3e77763
4
- data.tar.gz: f75b56c5d59247733bff2c82ed59dbff4310c9e9
3
+ metadata.gz: 9f71f5ef3f2cc02128bca33e121914c8bddbcc7c
4
+ data.tar.gz: 18cb3e97696f58ec71fa6b6a8951ae8c4d662f9b
5
5
  SHA512:
6
- metadata.gz: d98b2cfb51a878a8a7e8d856c337fa3e35ee67f7e62f430a970bb1c163fbe44f1b48ad3ffe39c28712f708f932cca0e8a856ce8c7af3df94b62f67cae8be4f91
7
- data.tar.gz: 0c4cda54e266cd717373e91c59b5ad77322bbfac71371bc395ee42fc9c95c201e2d89279bcf5cd46c9e6fbd6d01def4298cab961616ec62fc0e45a8a11b12c5d
6
+ metadata.gz: 7bae25369b8afbdf84503919dd2a70f53d4f5f1aaeecc6171a361e7bfb695edd570f477898abd7748ea0b911c7986230deaab3b26b08fb4ce91aa8ba1d7554a5
7
+ data.tar.gz: 51e118b7333a1fbca5c9887d2ac0e067689ab977be68b40ddec265a0581c938e823414c7a07902dddb2e70222ff8be3d310b5344c14305f2a3ef269876c735ea
@@ -3,11 +3,13 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/lohnsteuer.svg)](https://badge.fury.io/rb/lohnsteuer)
4
4
  [![Build Status](https://travis-ci.org/JanAhrens/lohnsteuer-ruby.svg)](https://travis-ci.org/JanAhrens/lohnsteuer-ruby)
5
5
 
6
- This is a Ruby implementation of the german income tax calculation
6
+ This is a Ruby implementation of the German income tax calculation
7
7
  algorithm.
8
8
 
9
- The algorithm gets updated by the "Bundesministerium der Finanzen" yearly (sometimes multiple times a year).
10
- Currently following implementations are supported:
9
+ The algorithm gets updated by the
10
+ [Federal Ministry of Finance (Bundesministerium der Finanzen)](http://www.bundesfinanzministerium.de/Web/EN/Home/home.html)
11
+ yearly (sometimes multiple times a year). Currently following
12
+ versions are supported:
11
13
 
12
14
  * [LST1215](lib/lohnsteuer/lst1215.rb) (for December 2015)
13
15
  * [LST2016](lib/lohnsteuer/lst2016.rb) (for 2016)
@@ -29,6 +31,9 @@ The algorithms weren't modified on purpose to enable updates and verification.
29
31
 
30
32
  **State of the project**: Initial release.
31
33
 
34
+ If you like to contribute, please send a pull-request. Make sure that
35
+ all tests pass and you add additional ones.
36
+
32
37
  ## Related projects
33
38
 
34
39
  * [vschoettke/node-lohnsteuer](https://github.com/vschoettke/lohnsteuer): Node.js implementation
@@ -1,3 +1,3 @@
1
1
  module Lohnsteuer
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Lohnsteuer::VERSION
9
9
  spec.authors = ["Jan Ahrens"]
10
10
  spec.email = ["jan.ahrens+rubygems@googlemail.com"]
11
- spec.summary = %q{German tax calculation algorithm}
11
+ spec.summary = %q{German income tax calculation. Currently supports the official algorithms for 12/2015 and 2016.}
12
12
  spec.description = ""
13
13
  spec.homepage = "https://github.com/JanAhrens/lohnsteuer-ruby"
14
14
  spec.license = "MIT"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lohnsteuer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Ahrens
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-12 00:00:00.000000000 Z
11
+ date: 2015-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -82,7 +82,8 @@ rubyforge_project:
82
82
  rubygems_version: 2.2.2
83
83
  signing_key:
84
84
  specification_version: 4
85
- summary: German tax calculation algorithm
85
+ summary: German income tax calculation. Currently supports the official algorithms
86
+ for 12/2015 and 2016.
86
87
  test_files:
87
88
  - test/lohnsteuer_test.rb
88
89
  - test/lst1215_test.rb