bookyt_projects 0.19.13 → 0.19.14
Sign up to get free protection for your applications and to get access to all the features.
- data/app/models/work_day.rb +3 -0
- data/lib/bookyt_projects/version.rb +1 -1
- metadata +4 -4
data/app/models/work_day.rb
CHANGED
@@ -51,6 +51,9 @@ class WorkDay < ActiveRecord::Base
|
|
51
51
|
#
|
52
52
|
# Lookup the employment for this day.
|
53
53
|
def employment
|
54
|
+
# Guard as only some classes provide .employments
|
55
|
+
return nil unless person.respond_to?(:employments)
|
56
|
+
|
54
57
|
person.employments.current(self.date)
|
55
58
|
end
|
56
59
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bookyt_projects
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 79
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 19
|
9
|
-
-
|
10
|
-
version: 0.19.
|
9
|
+
- 14
|
10
|
+
version: 0.19.14
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Roman Simecek (CyT)
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2012-03-
|
19
|
+
date: 2012-03-20 00:00:00 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: rails
|