lohnausweis 0.1.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.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +47 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/lohnausweis/daten.rb +142 -0
- data/lib/lohnausweis/daten_eintrag.rb +136 -0
- data/lib/lohnausweis/pdf_generator.rb +129 -0
- data/lib/lohnausweis/rohdaten.rb +92 -0
- data/lib/lohnausweis/version.rb +5 -0
- data/lib/lohnausweis.rb +25 -0
- data/locale/de.yml +133 -0
- data/lohnausweis.gemspec +26 -0
- data/mit_korrektur_januar.pdf +1089 -0
- data/sandbox/mit_korrektur_januar.pdf +168 -0
- data/sandbox/test_bounding_box.rb +69 -0
- data/spec/lohnausweis/daten_eintrag_spec.rb +74 -0
- data/spec/lohnausweis/daten_spec.rb +11 -0
- data/spec/lohnausweis/pdf_generator_spec.rb +35 -0
- data/spec/spec_helper.rb +8 -0
- metadata +111 -0
data/locale/de.yml
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
de:
|
2
|
+
date:
|
3
|
+
formats:
|
4
|
+
# Use the strftime parameters for formats.
|
5
|
+
# When no format has been given, it uses default.
|
6
|
+
# You can provide other formats here if you like!
|
7
|
+
default: "%Y-%m-%d"
|
8
|
+
short: "%b %d"
|
9
|
+
long: "%B %d, %Y"
|
10
|
+
|
11
|
+
day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
|
12
|
+
abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
|
13
|
+
|
14
|
+
# Don't forget the nil at the beginning; there's no such thing as a 0th month
|
15
|
+
month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
|
16
|
+
abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
|
17
|
+
# Used in date_select and datetime_select.
|
18
|
+
order:
|
19
|
+
- year
|
20
|
+
- month
|
21
|
+
- day
|
22
|
+
|
23
|
+
time:
|
24
|
+
formats:
|
25
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
26
|
+
short: "%d %b %H:%M"
|
27
|
+
long: "%B %d, %Y %H:%M"
|
28
|
+
am: "am"
|
29
|
+
pm: "pm"
|
30
|
+
|
31
|
+
# Used in array.to_sentence.
|
32
|
+
support:
|
33
|
+
array:
|
34
|
+
words_connector: ", "
|
35
|
+
two_words_connector: " and "
|
36
|
+
last_word_connector: ", and "
|
37
|
+
number:
|
38
|
+
# Used in NumberHelper.number_to_delimited()
|
39
|
+
# These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
|
40
|
+
format:
|
41
|
+
# Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
|
42
|
+
separator: "."
|
43
|
+
# Delimits thousands (e.g. 1,000,000 is a million) (always in groups of three)
|
44
|
+
delimiter: ","
|
45
|
+
# Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
|
46
|
+
precision: 3
|
47
|
+
# If set to true, precision will mean the number of significant digits instead
|
48
|
+
# of the number of decimal digits (1234 with precision 2 becomes 1200, 1.23543 becomes 1.2)
|
49
|
+
significant: false
|
50
|
+
# If set, the zeros after the decimal separator will always be stripped (eg.: 1.200 will be 1.2)
|
51
|
+
strip_insignificant_zeros: false
|
52
|
+
|
53
|
+
# Used in NumberHelper.number_to_currency()
|
54
|
+
currency:
|
55
|
+
format:
|
56
|
+
# Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
|
57
|
+
format: "%u%n"
|
58
|
+
unit: "$"
|
59
|
+
# These five are to override number.format and are optional
|
60
|
+
separator: "."
|
61
|
+
delimiter: ","
|
62
|
+
precision: 2
|
63
|
+
significant: false
|
64
|
+
strip_insignificant_zeros: false
|
65
|
+
|
66
|
+
# Used in NumberHelper.number_to_percentage()
|
67
|
+
percentage:
|
68
|
+
format:
|
69
|
+
# These five are to override number.format and are optional
|
70
|
+
# separator:
|
71
|
+
delimiter: ""
|
72
|
+
# precision:
|
73
|
+
# significant: false
|
74
|
+
# strip_insignificant_zeros: false
|
75
|
+
format: "%n%"
|
76
|
+
|
77
|
+
# Used in NumberHelper.number_to_rounded()
|
78
|
+
precision:
|
79
|
+
format:
|
80
|
+
# These five are to override number.format and are optional
|
81
|
+
# separator:
|
82
|
+
delimiter: ""
|
83
|
+
# precision:
|
84
|
+
# significant: false
|
85
|
+
# strip_insignificant_zeros: false
|
86
|
+
|
87
|
+
# Used in NumberHelper.number_to_human_size() and NumberHelper.number_to_human()
|
88
|
+
human:
|
89
|
+
format:
|
90
|
+
# These five are to override number.format and are optional
|
91
|
+
# separator:
|
92
|
+
delimiter: ""
|
93
|
+
precision: 3
|
94
|
+
significant: true
|
95
|
+
strip_insignificant_zeros: true
|
96
|
+
# Used in number_to_human_size()
|
97
|
+
storage_units:
|
98
|
+
# Storage units output formatting.
|
99
|
+
# %u is the storage unit, %n is the number (default: 2 MB)
|
100
|
+
format: "%n %u"
|
101
|
+
units:
|
102
|
+
byte:
|
103
|
+
one: "Byte"
|
104
|
+
other: "Bytes"
|
105
|
+
kb: "KB"
|
106
|
+
mb: "MB"
|
107
|
+
gb: "GB"
|
108
|
+
tb: "TB"
|
109
|
+
# Used in NumberHelper.number_to_human()
|
110
|
+
decimal_units:
|
111
|
+
format: "%n %u"
|
112
|
+
# Decimal units output formatting
|
113
|
+
# By default we will only quantify some of the exponents
|
114
|
+
# but the commented ones might be defined or overridden
|
115
|
+
# by the user.
|
116
|
+
units:
|
117
|
+
# femto: Quadrillionth
|
118
|
+
# pico: Trillionth
|
119
|
+
# nano: Billionth
|
120
|
+
# micro: Millionth
|
121
|
+
# mili: Thousandth
|
122
|
+
# centi: Hundredth
|
123
|
+
# deci: Tenth
|
124
|
+
unit: ""
|
125
|
+
# ten:
|
126
|
+
# one: Ten
|
127
|
+
# other: Tens
|
128
|
+
# hundred: Hundred
|
129
|
+
thousand: Thousand
|
130
|
+
million: Million
|
131
|
+
billion: Billion
|
132
|
+
trillion: Trillion
|
133
|
+
quadrillion: Quadrillion
|
data/lohnausweis.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'lohnausweis/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "lohnausweis"
|
8
|
+
spec.version = Planik::Lohnausweis::VERSION
|
9
|
+
spec.authors = ["Christian Muehlethaler"]
|
10
|
+
spec.email = ["christian.muehlethaler@optor.ch"]
|
11
|
+
spec.summary = %q{Lohnausweis generieren aus den Daten von Planik}
|
12
|
+
# spec.description = %q{TODO: Write a longer description. Optional.}
|
13
|
+
spec.homepage = "http://www.planik.ch"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
|
17
|
+
# Alle Files
|
18
|
+
spec.files = Dir.glob("**/*").reject { |file_path| File.directory?(file_path) || file_path.end_with?(".gem") }
|
19
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
24
|
+
spec.add_development_dependency "rspec"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
end
|