earl-report 0.2.6 → 0.2.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 +8 -8
- data/VERSION +1 -1
- data/lib/earl_report.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
N2RlNzlmYmNhNDNhYWYyYWEzZDFkZjlhOTQzYTMzNDIyZDJjYjY3OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YWE2MjBlNGU0NDY5MmRlMWVlMTUxYWQ5Yzk5YTcyNGJjYjEyOWZkZg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDIxMWI3YjhiYjUyMjgwYjU0MzU3YmQ4YmM4MTZlNzJhNTFhYTkzMmRiMmM0
|
10
|
+
ZDcyOGM1ZmRjZTAxYTljOTczN2ZkY2YzNWFiYWQ0YWRhYTVhMmU3YWM1YjQ0
|
11
|
+
MTMxYzQwNzNiNTBhMzVhYzMyODNjYzdhOGEwOTg2NGQwNTEzYjk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NmZkODIyNWU2ZTM5ZTAyMDE5ZmZiNzZiNTYwODZhYTcxMTZhOGI4YzFlNzli
|
14
|
+
NjRjNDJkZWIyOTg1YjExZWZjYWUwNjUyYWNiZDFlMjUxNDIyNDJkMWNiZWIx
|
15
|
+
YWQ5OWE1MDViMTk1MTgyNDRkZTkyY2M4NmVkYWM4YzAyY2M2ZmI=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.7
|
data/lib/earl_report.rb
CHANGED
@@ -45,7 +45,8 @@ class EarlReport
|
|
45
45
|
OPTIONAL { ?uri doap:homepage ?homepage . }
|
46
46
|
OPTIONAL { ?uri doap:description ?doapDesc . }
|
47
47
|
OPTIONAL { ?uri doap:programming-language ?language . }
|
48
|
-
OPTIONAL { ?developer a ?devType
|
48
|
+
OPTIONAL { ?developer a ?devType .}
|
49
|
+
OPTIONAL { ?developer foaf:name ?devName .}
|
49
50
|
OPTIONAL { ?developer foaf:homepage ?devHomepage .}
|
50
51
|
}
|
51
52
|
).freeze
|
@@ -200,7 +201,7 @@ class EarlReport
|
|
200
201
|
status " loaded #{foaf_graph.count} triples"
|
201
202
|
file_graph << foaf_graph.to_a
|
202
203
|
rescue
|
203
|
-
warn "\nfailed to load FOAF
|
204
|
+
warn "\nfailed to load FOAF from #{solution[:developer]}: #{$!}"
|
204
205
|
end
|
205
206
|
elsif !solution[:developer]
|
206
207
|
warn "\nNo developer identified for #{solution[:developer]}"
|