rdf-open_annotation 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -4
- data/lib/rdf/open_annotation/version.rb +1 -1
- data/rdf-open_annotation.gemspec +3 -3
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 09640a62e3f8e3fcfc026b7883964e076b2ab9f1
|
4
|
+
data.tar.gz: 2466aa1d80ffbf4c8e60f741c575827c5ca7c955
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d416c324319d4e3d67b84914df49c86839a1650ee4d1fec156f80d1f037e76e83190594d6260e0738f873f7546db22dfb0ed0b0a5d4c075751456b63a3d4ba89
|
7
|
+
data.tar.gz: bd1c5766433616d58fe98cc0893cf4e35f72623d58e1ff8fd1218c1400c88ffaf94ebd6c6a9a013f788a6671550dc63e4832d8c80dadc232f96d76cc33988c2a
|
data/README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
# OpenAnnotation
|
2
2
|
|
3
|
-
|
3
|
+
Contains vocabularies to be used by RDF ruby gem https://github.com/ruby-rdf/rdf/ to simplify coding when using OpenAnnotation data.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
9
|
```ruby
|
10
|
-
gem 'open_annotation'
|
10
|
+
gem 'rdf-open_annotation'
|
11
11
|
```
|
12
12
|
|
13
13
|
And then execute:
|
@@ -16,11 +16,17 @@ And then execute:
|
|
16
16
|
|
17
17
|
Or install it yourself as:
|
18
18
|
|
19
|
-
$ gem install open_annotation
|
19
|
+
$ gem install rdf-open_annotation
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
|
23
|
+
# @example Using these RDF vocabularies
|
24
|
+
# include RDF
|
25
|
+
# include 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")
|
24
30
|
|
25
31
|
## Contributing
|
26
32
|
|
data/rdf-open_annotation.gemspec
CHANGED
@@ -6,9 +6,9 @@ require 'rdf/open_annotation/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "rdf-open_annotation"
|
8
8
|
spec.version = RDF::OpenAnnotation::VERSION
|
9
|
-
spec.authors = ["Chris Beer"]
|
10
|
-
spec.email = ["cabeer@stanford.edu"]
|
11
|
-
spec.summary = %q{Open Annotation
|
9
|
+
spec.authors = ["Chris Beer", "Naomi Dushay"]
|
10
|
+
spec.email = ["cabeer@stanford.edu", "ndushay@stanford.edu"]
|
11
|
+
spec.summary = %q{Open Annotation vocabularies for RDF.rb}
|
12
12
|
spec.homepage = ""
|
13
13
|
spec.license = "Apache 2"
|
14
14
|
|
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-open_annotation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Beer
|
8
|
+
- Naomi Dushay
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-
|
12
|
+
date: 2014-10-14 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: rdf
|
@@ -55,6 +56,7 @@ dependencies:
|
|
55
56
|
description:
|
56
57
|
email:
|
57
58
|
- cabeer@stanford.edu
|
59
|
+
- ndushay@stanford.edu
|
58
60
|
executables: []
|
59
61
|
extensions: []
|
60
62
|
extra_rdoc_files: []
|
@@ -88,8 +90,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
90
|
version: '0'
|
89
91
|
requirements: []
|
90
92
|
rubyforge_project:
|
91
|
-
rubygems_version: 2.2.
|
93
|
+
rubygems_version: 2.2.0
|
92
94
|
signing_key:
|
93
95
|
specification_version: 4
|
94
|
-
summary: Open Annotation
|
96
|
+
summary: Open Annotation vocabularies for RDF.rb
|
95
97
|
test_files: []
|