lohnsteuer 0.1.1 → 0.1.2
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 +4 -4
- data/README.markdown +8 -3
- data/lib/lohnsteuer/version.rb +1 -1
- data/lohnsteuer.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f71f5ef3f2cc02128bca33e121914c8bddbcc7c
|
|
4
|
+
data.tar.gz: 18cb3e97696f58ec71fa6b6a8951ae8c4d662f9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7bae25369b8afbdf84503919dd2a70f53d4f5f1aaeecc6171a361e7bfb695edd570f477898abd7748ea0b911c7986230deaab3b26b08fb4ce91aa8ba1d7554a5
|
|
7
|
+
data.tar.gz: 51e118b7333a1fbca5c9887d2ac0e067689ab977be68b40ddec265a0581c938e823414c7a07902dddb2e70222ff8be3d310b5344c14305f2a3ef269876c735ea
|
data/README.markdown
CHANGED
|
@@ -3,11 +3,13 @@
|
|
|
3
3
|
[](https://badge.fury.io/rb/lohnsteuer)
|
|
4
4
|
[](https://travis-ci.org/JanAhrens/lohnsteuer-ruby)
|
|
5
5
|
|
|
6
|
-
This is a Ruby implementation of the
|
|
6
|
+
This is a Ruby implementation of the German income tax calculation
|
|
7
7
|
algorithm.
|
|
8
8
|
|
|
9
|
-
The algorithm gets updated by the
|
|
10
|
-
|
|
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
|
data/lib/lohnsteuer/version.rb
CHANGED
data/lohnsteuer.gemspec
CHANGED
|
@@ -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
|
|
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.
|
|
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-
|
|
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
|
|
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
|