rdf-open_annotation 0.0.4 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a1a047ce08164e8ca405588ae9137ef8ee2338f
4
- data.tar.gz: 565592ea16776990faedd05c6951d15809201092
3
+ metadata.gz: c38719e0837802db837700c8c8289349d30181d1
4
+ data.tar.gz: 842dcd59a42ef333be4fd9204238f20f1330e4e1
5
5
  SHA512:
6
- metadata.gz: 949ce84a0e3d9e07a3d8fb00625866bfa606d253a715b10292fd0ae7dc7dd64fdf0a799a6087b043d78d17e4c6138f7ddc64bfb5b5514b80a774099a50243e16
7
- data.tar.gz: 6acef027b3523ab49d0b3f02d99ee06147453f9b948b8a4b5027bcc2afd33e0f7740d38f9b70f0a7564e268e6321c481ddb5789d1ac3d5fe69c681a768fab3f6
6
+ metadata.gz: 02c306fd61d540c3a0189a873fe9c9c438359fff98ac1a9cfbe600a047df917034879fadd606a301f582f62aca9b1ebb4ec743fdd09ff7084ac1d8240da9f42c
7
+ data.tar.gz: e3278d8d7f8a687210e224ed7a6877dce38c5381b01d4623ef439796a3ee0b3c1cc48acd5a33e58b251959f87cf4b1f11abdb8b0abd071b48b1ea0a346e639f3
data/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ # DEPRECATED
2
+
3
+ This gem is deprecated; rdf-vocab gem (https://github.com/ruby-rdf/rdf-vocab, included in the linkeddata gem) now contains RDF::Vocab::OA, RDF::Vocab::DCMIType and RDF::Vocab::CNT.
4
+
1
5
  # rdf-open_annotation
2
6
 
3
7
  [![Dependency Status](https://gemnasium.com/sul-dlss/rdf-open_annotation.svg)](https://gemnasium.com/sul-dlss/rdf-open_annotation) [![Gem Version](https://badge.fury.io/rb/rdf-open_annotation.svg)](http://badge.fury.io/rb/rdf-open_annotation)
@@ -9,7 +13,7 @@ Contains vocabularies to be used by RDF ruby gem https://github.com/ruby-rdf/rdf
9
13
  Add this line to your application's Gemfile:
10
14
 
11
15
  ```ruby
12
- gem 'rdf-open_annotation'
16
+ gem 'rdf-vocab' # (was rdf-open_annotation)
13
17
  ```
14
18
 
15
19
  And then execute:
@@ -18,21 +22,17 @@ And then execute:
18
22
 
19
23
  Or install it yourself as:
20
24
 
21
- $ gem install rdf-open_annotation
25
+ $ gem install rdf-vocab # (was rdf-open_annotation)
22
26
 
23
27
  ## Usage
24
28
 
25
- require 'rdf/open_annotation'
26
-
27
- RDF::OpenAnnotation.Annotation #=> RDF::URI("http://www.w3.org/ns/oa#Annotation")
28
- RDF::OpenAnnotation.hasBody #=> RDF::URI("http://www.w3.org/ns/oa#hasBody")
29
- RDF::Content.chars #=> RDF::URI("http://www.w3.org/2011/content#chars")
30
- RDF::DCMIType.Text #=> RDF::URI("http://purl.org/dc/dcmitype/Text")
29
+ require 'rdf/vocab'
30
+
31
+ RDF::Vocab::OA.Annotation #=> RDF::URI("http://www.w3.org/ns/oa#Annotation")
32
+ RDF::Vocab::OA.hasBody #=> RDF::URI("http://www.w3.org/ns/oa#hasBody")
33
+ RDF::Vocab::CNT.chars #=> RDF::URI("http://www.w3.org/2011/content#chars")
34
+ RDF::Vocab::DCMIType.Text #=> RDF::URI("http://purl.org/dc/dcmitype/Text")
31
35
 
32
- ## Contributing
36
+ # DEPRECATED
33
37
 
34
- 1. Fork it ( https://github.com/[my-github-username]/rdf-open_annotation/fork )
35
- 2. Create your feature branch (`git checkout -b my-new-feature`)
36
- 3. Commit your changes (`git commit -am 'Add some feature'`)
37
- 4. Push to the branch (`git push origin my-new-feature`)
38
- 5. Create a new Pull Request
38
+ This gem is deprecated; rdf-vocab gem (https://github.com/ruby-rdf/rdf-vocab, included in the linkeddata gem) now contains RDF::Vocab::OA, RDF::Vocab::DCMIType and RDF::Vocab::CNT.
@@ -2,7 +2,17 @@
2
2
  # This file generated automatically using vocab-fetch from http://www.w3.org/2011/content#
3
3
  require 'rdf'
4
4
  module RDF
5
- class Content < RDF::StrictVocabulary("http://www.w3.org/2011/content#")
5
+
6
+ # deprecate Content
7
+ def self.const_missing(const_name)
8
+ super unless const_name == :Content
9
+ warn "DEPRECATION WARNING: the class RDF::Content is deprecated. Use RDF::Vocab::CNT from https://github.com/ruby-rdf/rdf-vocab instead."
10
+ ContentDeprecated
11
+ end
12
+
13
+ # @deprecated: this class is deprecated in favor of RDF::Vocab::CNT from
14
+ # rdf-vocab gem
15
+ class ContentDeprecated < RDF::StrictVocabulary("http://www.w3.org/2011/content#")
6
16
 
7
17
  # Class definitions
8
18
  term :Content,
@@ -2,7 +2,16 @@
2
2
  # This file generated automatically using vocab-fetch from http://purl.org/dc/dcmitype/
3
3
  require 'rdf'
4
4
  module RDF
5
- class DCMIType < RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")
5
+ # deprecate DCMIType
6
+ def self.const_missing(const_name)
7
+ super unless const_name == :DCMIType
8
+ warn "DEPRECATION WARNING: the class RDF::DCMIType is deprecated. Use RDF::Vocab::DCMIType from https://github.com/ruby-rdf/rdf-vocab instead."
9
+ DCMITypeDeprecated
10
+ end
11
+
12
+ # @deprecated: this class is deprecated in favor of RDF::Vocab::DCMIType from
13
+ # rdf-vocab gem
14
+ class DCMITypeDeprecated < RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")
6
15
 
7
16
  # Class definitions
8
17
  term :Collection,
@@ -1,5 +1,5 @@
1
1
  module RDF
2
2
  module OpenAnnotation
3
- VERSION = "0.0.4"
3
+ VERSION = "0.1.0"
4
4
  end
5
5
  end
@@ -2,20 +2,29 @@
2
2
  # This file generated automatically using vocab-fetch from http://www.w3.org/ns/oa#
3
3
  require 'rdf'
4
4
  module RDF
5
- class OpenAnnotation < RDF::StrictVocabulary("http://www.w3.org/ns/oa#")
5
+ # deprecate OpenAnnotation
6
+ def self.const_missing(const_name)
7
+ super unless const_name == :OpenAnnotation
8
+ warn "DEPRECATION WARNING: the class RDF::OpenAnnotation is deprecated. Use RDF::Vocab::OA from https://github.com/ruby-rdf/rdf-vocab instead."
9
+ OpenAnnotationDeprecated
10
+ end
11
+
12
+ # @deprecated: this class is deprecated in favor of RDF::Vocab::OA from
13
+ # rdf-vocab gem
14
+ class OpenAnnotationDeprecated < RDF::StrictVocabulary("http://www.w3.org/ns/oa#")
6
15
 
7
16
  # Class definitions
8
17
  term :Annotation,
9
- comment: %(Typically an Annotation has a single Body \(oa:hasBody\), which is the comment or other descriptive resource, and a single Target \(oa:hasTarget\) that the Body is somehow "about". The Body provides the information which is annotating the Target.
18
+ comment: %(Typically an Annotation has a single Body \(oa:hasBody\), which is the comment or other descriptive resource, and a single Target \(oa:hasTarget\) that the Body is somehow "about". The Body provides the information which is annotating the Target.
10
19
 
11
20
  This "aboutness" may be further clarified or extended to notions such as classifying or identifying with oa:motivatedBy.).freeze,
12
21
  label: "Annotation".freeze,
13
22
  "rdfs:isDefinedBy" => %(http://www.w3.org/ns/oa#).freeze,
14
23
  type: "owl:Class".freeze
15
24
  term :Choice,
16
- comment: %(A multiplicity construct that conveys to a consuming application that it should select one of the constituent resources to display to the user, and not render/use all of them.
25
+ comment: %(A multiplicity construct that conveys to a consuming application that it should select one of the constituent resources to display to the user, and not render/use all of them.
17
26
 
18
- oa:Choice can be used as the object of the object of the oa:hasBody, oa:hasTarget, oa:hasSelector, oa:hasState, oa:styledBy and oa:hasScope relationships,
27
+ oa:Choice can be used as the object of the object of the oa:hasBody, oa:hasTarget, oa:hasSelector, oa:hasState, oa:styledBy and oa:hasScope relationships,
19
28
 
20
29
  There MUST be 1 or more oa:item relationships for each oa:Choice.
21
30
 
@@ -25,9 +34,9 @@ There SHOULD be exactly 1 default relationship for each Choice.).freeze,
25
34
  subClassOf: "rdf:Alt".freeze,
26
35
  type: "owl:Class".freeze
27
36
  term :Composite,
28
- comment: %(A multiplicity construct that conveys to a consuming application that all of the constituent resources are required for the Annotation to be correctly interpreted.
37
+ comment: %(A multiplicity construct that conveys to a consuming application that all of the constituent resources are required for the Annotation to be correctly interpreted.
29
38
 
30
- oa:Composite can be used as the object of the object of the oa:hasBody, oa:hasTarget, oa:hasSelector, oa:hasState, oa:styledBy and oa:hasScope relationships,
39
+ oa:Composite can be used as the object of the object of the oa:hasBody, oa:hasTarget, oa:hasSelector, oa:hasState, oa:styledBy and oa:hasScope relationships,
31
40
 
32
41
  There MUST be 2 or more oa:item relationships for each oa:Composite.).freeze,
33
42
  label: "Composite".freeze,
@@ -77,9 +86,9 @@ There MUST be exactly 1 rdf:value property per HttpRequestState, containing HTTP
77
86
  subClassOf: "http://www.w3.org/ns/oa#State".freeze,
78
87
  type: "owl:Class".freeze
79
88
  term :List,
80
- comment: %(A multiplicity construct that conveys to a consuming application that all of the constituent resources are required for the Annotation to be correctly interpreted, and in a particular order.
89
+ comment: %(A multiplicity construct that conveys to a consuming application that all of the constituent resources are required for the Annotation to be correctly interpreted, and in a particular order.
81
90
 
82
- oa:List can be used as the object of the object of the oa:hasBody, oa:hasTarget, oa:hasSelector, oa:hasState, oa:styledBy and oa:hasScope relationships,
91
+ oa:List can be used as the object of the object of the oa:hasBody, oa:hasTarget, oa:hasSelector, oa:hasState, oa:styledBy and oa:hasScope relationships,
83
92
 
84
93
  There MUST be 2 or more oa:item relationships for each oa:List, with their order defined using the rdf:List construct of rdf:first/rdf:rest/rdf:nil.
85
94
 
@@ -97,7 +106,7 @@ Each Annotation SHOULD have at least one oa:motivatedBy relationship to an insta
97
106
  subClassOf: "skos:Concept".freeze,
98
107
  type: "owl:Class".freeze
99
108
  term :Selector,
100
- comment: %(A resource which describes the segment of interest in a representation of a Source resource, indicated with oa:hasSelector from the Specific Resource.
109
+ comment: %(A resource which describes the segment of interest in a representation of a Source resource, indicated with oa:hasSelector from the Specific Resource.
101
110
 
102
111
  This class is not used directly in Annotations, only its subclasses are.
103
112
 
@@ -116,7 +125,7 @@ It is NOT RECOMMENDED to use the URI of a document as a Semantic Tag, as it migh
116
125
  subClassOf: "http://www.w3.org/ns/oa#Tag".freeze,
117
126
  type: "owl:Class".freeze
118
127
  term :SpecificResource,
119
- comment: %(A resource identifies part of another Source resource, a particular representation of a resource, a resource with styling hints for renders, or any combination of these.
128
+ comment: %(A resource identifies part of another Source resource, a particular representation of a resource, a resource with styling hints for renders, or any combination of these.
120
129
 
121
130
  The Specific Resource takes the role of oa:hasBody or oa:hasTarget in an oa:Annotation instead of the Source resource.
122
131
 
@@ -144,7 +153,7 @@ The Specifier's description MAY be conveyed as an external or embedded resource
144
153
 
145
154
  This class is not used directly in Annotations, only its subclasses are.
146
155
 
147
- The content of the resource provides the rendering hints about the Annotation's constituent resources.
156
+ The content of the resource provides the rendering hints about the Annotation's constituent resources.
148
157
 
149
158
  The Specifier's description MAY be conveyed as an external or embedded resource \(cnt:Content\), or as RDF properties within the graph. The description SHOULD use existing standards whenever possible. If the Specifier has an HTTP URI, then its description, and only its description, MUST be returned when the URI is dereferenced.).freeze,
150
159
  label: "Style".freeze,
@@ -212,7 +221,7 @@ There MUST be at least one of oa:cachedSource or oa:when specified. If there is
212
221
 
213
222
  # Property definitions
214
223
  property :annotatedAt,
215
- comment: %(The time at which the Annotation was created.
224
+ comment: %(The time at which the Annotation was created.
216
225
 
217
226
  There SHOULD be exactly 1 oa:annotatedAt property per Annotation, and MUST NOT be more than 1. The datetime MUST be expressed in the xsd:dateTime format, and SHOULD have a timezone specified.).freeze,
218
227
  domain: "http://www.w3.org/ns/oa#Annotation".freeze,
@@ -221,7 +230,7 @@ There SHOULD be exactly 1 oa:annotatedAt property per Annotation, and MUST NOT b
221
230
  "rdfs:isDefinedBy" => %(http://www.w3.org/ns/oa#).freeze,
222
231
  type: "owl:DatatypeProperty".freeze
223
232
  property :annotatedBy,
224
- comment: %(The object of the relationship is a resource that identifies the agent responsible for creating the Annotation. This may be either a human or software agent.
233
+ comment: %(The object of the relationship is a resource that identifies the agent responsible for creating the Annotation. This may be either a human or software agent.
225
234
 
226
235
  There SHOULD be exactly 1 oa:annotatedBy relationship per Annotation, but MAY be 0 or more than 1, as the Annotation may be anonymous, or multiple agents may have worked together on it.
227
236
 
@@ -247,7 +256,7 @@ There SHOULD be exactly 1 default relationship for each Choice.).freeze,
247
256
  subPropertyOf: "http://www.w3.org/ns/oa#item".freeze,
248
257
  type: "owl:ObjectProperty".freeze
249
258
  property :end,
250
- comment: %(The end position of the segment of text or bytes. The first character/byte in the full text/stream is position 0. The character/byte indicated at position oa:end is NOT included within the selected segment.
259
+ comment: %(The end position of the segment of text or bytes. The first character/byte in the full text/stream is position 0. The character/byte indicated at position oa:end is NOT included within the selected segment.
251
260
 
252
261
  See oa:DataPositionSelector and oa:oa:TextPositionSelector.).freeze,
253
262
  domain: "http://www.w3.org/ns/oa#Selector".freeze,
@@ -256,7 +265,7 @@ See oa:DataPositionSelector and oa:oa:TextPositionSelector.).freeze,
256
265
  "rdfs:isDefinedBy" => %(http://www.w3.org/ns/oa#).freeze,
257
266
  type: "owl:DatatypeProperty".freeze
258
267
  property :equivalentTo,
259
- comment: %(The subject and object resources of the oa:equivalentTo relationship represent the same resource, but potentially have different metadata such as oa:serializedBy, oa:serializedAt and serialization format. oa:equivalentTo is a symmetrical and transitive relationship; if A oa:equivalentTo B, then it is also true that B oa:equivalent A; and that if B oa:equivalentTo C, then it is also true that A oa:equivalentTo C.
268
+ comment: %(The subject and object resources of the oa:equivalentTo relationship represent the same resource, but potentially have different metadata such as oa:serializedBy, oa:serializedAt and serialization format. oa:equivalentTo is a symmetrical and transitive relationship; if A oa:equivalentTo B, then it is also true that B oa:equivalent A; and that if B oa:equivalentTo C, then it is also true that A oa:equivalentTo C.
260
269
 
261
270
  The Annotation MAY include 0 or more instances of the oa:equivalentTo relationship between copies of the Annotation or other resources, and SHOULD include as many as are available.
262
271
 
@@ -278,7 +287,7 @@ See oa:TextQuoteSelector.).freeze,
278
287
 
279
288
  The Body may be of any media type, and contain any type of content. The Body SHOULD be identified by HTTP URIs unless they are embedded within the Annotation.
280
289
 
281
- Embedded bodies SHOULD be instances of cnt:ContentAsText and embed their content with cnt:chars. They SHOULD declare their media type with dc:format, and MAY indicate their language using dc:language and a RFC-3066 language tag.
290
+ Embedded bodies SHOULD be instances of cnt:ContentAsText and embed their content with cnt:chars. They SHOULD declare their media type with dc:format, and MAY indicate their language using dc:language and a RFC-3066 language tag.
282
291
 
283
292
  There is no OA class provided for "Body" as a body might be a target of a different annotation. However, there SHOULD be 1 or more content-based classes associated with the body resources of an Annotation, and the dctypes: vocabulary is recommended for this purpose, for instance dctypes:Text to declare textual content.
284
293
  ).freeze,
@@ -297,8 +306,8 @@ There MAY be 0 or more hasScope relationships for each Specific Resource.).freez
297
306
  property :hasSelector,
298
307
  comment: %(The relationship between a oa:SpecificResource and a oa:Selector.
299
308
 
300
- There MUST be exactly 0 or 1 oa:hasSelector relationship associated with a
301
- Specific Resource.
309
+ There MUST be exactly 0 or 1 oa:hasSelector relationship associated with a
310
+ Specific Resource.
302
311
 
303
312
  If multiple Selectors are required, either to express a choice between different optional, equivalent selectors, or a chain of selectors that should all be processed, it is necessary to use oa:Choice, oa:Composite or oa:List as a selector.).freeze,
304
313
  domain: "http://www.w3.org/ns/oa#SpecificResource".freeze,
@@ -307,7 +316,7 @@ If multiple Selectors are required, either to express a choice between different
307
316
  "rdfs:isDefinedBy" => %(http://www.w3.org/ns/oa#).freeze,
308
317
  type: "owl:ObjectProperty".freeze
309
318
  property :hasSource,
310
- comment: %(The relationship between a oa:SpecificResource and the resource that it is a more specific representation of.
319
+ comment: %(The relationship between a oa:SpecificResource and the resource that it is a more specific representation of.
311
320
 
312
321
  There MUST be exactly 1 oa:hasSource relationship associated with a Specific Resource.).freeze,
313
322
  domain: "http://www.w3.org/ns/oa#SpecificResource".freeze,
@@ -330,7 +339,7 @@ If there are multiple State resources that must be associated with the specific
330
339
 
331
340
  The target may be of any media type, and contain any type of content. The target SHOULD be identified by HTTP URIs unless they are embedded within the Annotation.
332
341
 
333
- Embedded targets SHOULD be instances of cnt:ContentAsText and embed their content with cnt:chars. They SHOULD declare their media type with dc:format, and MAY indicate their language using dc:language and a RFC-3066 language tag.
342
+ Embedded targets SHOULD be instances of cnt:ContentAsText and embed their content with cnt:chars. They SHOULD declare their media type with dc:format, and MAY indicate their language using dc:language and a RFC-3066 language tag.
334
343
 
335
344
  There is no OA class provided for "Target" as a target might be a body in a different annotation. However, there SHOULD be 1 or more content-based classes associated with the target resources of an Annotation, and the dctypes: vocabulary is recommended for this purpose, for instance dctypes:Text to declare textual content.).freeze,
336
345
  domain: "http://www.w3.org/ns/oa#Annotation".freeze,
@@ -363,7 +372,7 @@ See oa:TextQuoteSelector.).freeze,
363
372
  "rdfs:isDefinedBy" => %(http://www.w3.org/ns/oa#).freeze,
364
373
  type: "owl:DatatypeProperty".freeze
365
374
  property :serializedAt,
366
- comment: %(The time at which the agent referenced by oa:serializedBy generated the first serialization of the Annotation, and any subsequent substantially different one. The annotation graph MUST have changed for this property to be updated, and as such represents the last modified datestamp for the Annotation. This might be used to determine if it should be re-imported into a triplestore when discovered.
375
+ comment: %(The time at which the agent referenced by oa:serializedBy generated the first serialization of the Annotation, and any subsequent substantially different one. The annotation graph MUST have changed for this property to be updated, and as such represents the last modified datestamp for the Annotation. This might be used to determine if it should be re-imported into a triplestore when discovered.
367
376
 
368
377
  There MAY be exactly 1 oa:serializedAt property per Annotation, and MUST NOT be more than 1. The datetime MUST be expressed in the xsd:dateTime format, and SHOULD have a timezone specified.
369
378
  ).freeze,
@@ -373,7 +382,7 @@ There MAY be exactly 1 oa:serializedAt property per Annotation, and MUST NOT be
373
382
  "rdfs:isDefinedBy" => %(http://www.w3.org/ns/oa#).freeze,
374
383
  type: "owl:DatatypeProperty".freeze
375
384
  property :serializedBy,
376
- comment: %(The object of the relationship is the agent, likely software, responsible for generating the serialization of the Annotation's serialization.
385
+ comment: %(The object of the relationship is the agent, likely software, responsible for generating the serialization of the Annotation's serialization.
377
386
 
378
387
  It is RECOMMENDED to use these and other FOAF terms to describe agents: foaf:Person, prov:SoftwareAgent, foaf:Organization, foaf:name, foaf:mbox, foaf:openid, foaf:homepage
379
388
 
@@ -384,7 +393,7 @@ There MAY be 0 or more oa:serializedBy relationships per Annotation.).freeze,
384
393
  subPropertyOf: "prov:wasAttributedTo".freeze,
385
394
  type: "owl:ObjectProperty".freeze
386
395
  property :start,
387
- comment: %(The starting position of the segment of text or bytes. The first character/byte in the full text/stream is position 0. The character/byte indicated at position oa:start is included within the selected segment.
396
+ comment: %(The starting position of the segment of text or bytes. The first character/byte in the full text/stream is position 0. The character/byte indicated at position oa:start is included within the selected segment.
388
397
 
389
398
  See oa:DataPositionSelector and oa:TextPositionSelector.).freeze,
390
399
  domain: "http://www.w3.org/ns/oa#Selector".freeze,
@@ -414,7 +423,7 @@ If there are multiple Style resources that must be associated with the Annotatio
414
423
  "rdfs:isDefinedBy" => %(http://www.w3.org/ns/oa#).freeze,
415
424
  type: "owl:ObjectProperty".freeze
416
425
  property :suffix,
417
- comment: %(The snippet of text that occurs immediately after the text which is being selected.
426
+ comment: %(The snippet of text that occurs immediately after the text which is being selected.
418
427
 
419
428
  See oa:TextQuoteSelector.).freeze,
420
429
  domain: "http://www.w3.org/ns/oa#Selector".freeze,
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = RDF::OpenAnnotation::VERSION
9
9
  spec.authors = ["Chris Beer", "Naomi Dushay"]
10
10
  spec.email = ["cabeer@stanford.edu", "ndushay@stanford.edu"]
11
- spec.summary = %q{Open Annotation vocabularies for RDF.rb}
12
- spec.homepage = ""
11
+ spec.summary = %q{This gem deprecated in favor of rdf-vocab}
12
+ spec.homepage = "https://github.com/sul-dlss/rdf-open_annotation"
13
13
  spec.license = "Apache 2"
14
14
 
15
15
  spec.files = `git ls-files -z`.split("\x0")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-open_annotation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-16 00:00:00.000000000 Z
12
+ date: 2015-04-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rdf
@@ -72,7 +72,7 @@ files:
72
72
  - lib/rdf/open_annotation/version.rb
73
73
  - lib/rdf/open_annotation/vocab.rb
74
74
  - rdf-open_annotation.gemspec
75
- homepage: ''
75
+ homepage: https://github.com/sul-dlss/rdf-open_annotation
76
76
  licenses:
77
77
  - Apache 2
78
78
  metadata: {}
@@ -92,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
92
  version: '0'
93
93
  requirements: []
94
94
  rubyforge_project:
95
- rubygems_version: 2.2.0
95
+ rubygems_version: 2.4.3
96
96
  signing_key:
97
97
  specification_version: 4
98
- summary: Open Annotation vocabularies for RDF.rb
98
+ summary: This gem deprecated in favor of rdf-vocab
99
99
  test_files: []