berichtsheft 0.0.6 → 0.0.7
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/.rubocop.yml +2 -0
- data/Gemfile +1 -1
- data/berichtsheft.gemspec +3 -3
- data/lib/berichtsheft.rb +3 -3
- data/lib/berichtsheft/version.rb +1 -1
- metadata +6 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1e7a86607dd3e664cace2f2821f0e8eea8c7d2d
|
4
|
+
data.tar.gz: 983e267ebe4b1a6da3b53f2ae97a3c8d12b7ecf1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46a7a9822489ac9500249f2e12fb24729a71eec1e43a7c9ce4f9ab4d538ab4aa16f37607967823d9fdefd35eb6cbffef65c3693371c2b2c5315a587e106cf199
|
7
|
+
data.tar.gz: db56a13809f5bd37237d05d6bdc67b694e10ad23ba5d00cc3c8441bae523e9bc3fdc22668a285332954ac78881630341171febdb5ce0215c0c4dd90599fc8dff
|
data/.rubocop.yml
ADDED
data/Gemfile
CHANGED
data/berichtsheft.gemspec
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
# -*- encodingL utf-8 -*-
|
2
2
|
lib = File.expand_path("../lib", __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
4
|
require "berichtsheft/version"
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.version = Berichtsheft::VERSION
|
9
9
|
s.licenses = ["GPLv3"]
|
10
10
|
s.summary = "Create weekly reports"
|
11
|
-
s.description = "Berichtsheft is a ruby library that helps apprentices" \
|
11
|
+
s.description = "Berichtsheft is a ruby library that helps apprentices " \
|
12
12
|
"working in Germany create weekly reports."
|
13
13
|
s.authors = ["Volkan Edis"]
|
14
14
|
s.email = "mail@vedis.io"
|
@@ -16,5 +16,5 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.homepage = "https://github.com/vedis/berichtsheft"
|
17
17
|
|
18
18
|
s.required_ruby_version = ">= 2.1.1"
|
19
|
-
s.add_dependency("prawn", "
|
19
|
+
s.add_dependency("prawn", "1.0.0")
|
20
20
|
end
|
data/lib/berichtsheft.rb
CHANGED
@@ -22,9 +22,9 @@ module Berichtsheft
|
|
22
22
|
|
23
23
|
def employee
|
24
24
|
Berichtsheft::Employee.new(
|
25
|
-
:
|
26
|
-
:
|
27
|
-
:
|
25
|
+
first_name: @first_name,
|
26
|
+
last_name: @last_name,
|
27
|
+
department: @department
|
28
28
|
)
|
29
29
|
end
|
30
30
|
|
data/lib/berichtsheft/version.rb
CHANGED
metadata
CHANGED
@@ -1,42 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: berichtsheft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Volkan Edis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: prawn
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.0'
|
20
|
-
- - ">="
|
17
|
+
- - '='
|
21
18
|
- !ruby/object:Gem::Version
|
22
19
|
version: 1.0.0
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '1.0'
|
30
|
-
- - ">="
|
24
|
+
- - '='
|
31
25
|
- !ruby/object:Gem::Version
|
32
26
|
version: 1.0.0
|
33
|
-
description: Berichtsheft is a ruby library that helps
|
27
|
+
description: Berichtsheft is a ruby library that helps apprentices working in Germany
|
34
28
|
create weekly reports.
|
35
29
|
email: mail@vedis.io
|
36
30
|
executables: []
|
37
31
|
extensions: []
|
38
32
|
extra_rdoc_files: []
|
39
33
|
files:
|
34
|
+
- ".rubocop.yml"
|
40
35
|
- Gemfile
|
41
36
|
- LICENSE
|
42
37
|
- README.md
|