ro-crate 0.4.0 → 0.4.1
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/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/Rakefile +1 -1
- data/lib/{ro_crate_ruby.rb → ro_crate.rb} +0 -0
- data/ro_crate.gemspec +1 -1
- data/test/test_helper.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b5b7dfe4513a995ac2d5040a0fb94380d0a4da0a2181d2b0978a0dfd667715c
|
|
4
|
+
data.tar.gz: c5f6a40b5d3eac383ddecfa79088ecf102cf54413000944c619b4936fd775247
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf966c315804ae8855683eceac6ba725ad607682a630873f2d84ceee8471fe23c22b00127e9391d7b1737aa0e1c8c65e54be085e2a7c47a4436aece62fa56d0f
|
|
7
|
+
data.tar.gz: 2464ebbbb77c3d71c9a47da2908c61f8d90cd76f043f00f748d1ccab41270b2d0ff9255ba06632dbdddf7d1d295e1204a314fc4f0cef69eb9419d213fc0a0232
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ This is a WIP gem for creating, manipulating and reading RO crates (conforming t
|
|
|
10
10
|
Using bundler, add the following to your Gemfile:
|
|
11
11
|
|
|
12
12
|
```
|
|
13
|
-
gem 'ro-crate
|
|
13
|
+
gem 'ro-crate'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
and run `bundle install`.
|
|
@@ -24,7 +24,7 @@ and run `bundle install`.
|
|
|
24
24
|
### Examples
|
|
25
25
|
|
|
26
26
|
```ruby
|
|
27
|
-
require '
|
|
27
|
+
require 'ro_crate'
|
|
28
28
|
|
|
29
29
|
# Make a new crate
|
|
30
30
|
crate = ROCrate::Crate.new
|
data/Rakefile
CHANGED
|
File without changes
|
data/ro_crate.gemspec
CHANGED
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ro-crate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Finn Bacall
|
|
@@ -123,6 +123,7 @@ files:
|
|
|
123
123
|
- LICENSE
|
|
124
124
|
- README.md
|
|
125
125
|
- Rakefile
|
|
126
|
+
- lib/ro_crate.rb
|
|
126
127
|
- lib/ro_crate/json_ld_hash.rb
|
|
127
128
|
- lib/ro_crate/model/contact_point.rb
|
|
128
129
|
- lib/ro_crate/model/contextual_entity.rb
|
|
@@ -140,7 +141,6 @@ files:
|
|
|
140
141
|
- lib/ro_crate/reader.rb
|
|
141
142
|
- lib/ro_crate/ro-crate-preview.html.erb
|
|
142
143
|
- lib/ro_crate/writer.rb
|
|
143
|
-
- lib/ro_crate_ruby.rb
|
|
144
144
|
- ro_crate.gemspec
|
|
145
145
|
- test/crate_test.rb
|
|
146
146
|
- test/directory_test.rb
|