ro-crate 0.4.0 → 0.4.1

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
  SHA256:
3
- metadata.gz: 1a00cfaaae356d223c2104408fc10f894aa53271f982924b3c73c9661169b69f
4
- data.tar.gz: c26895cf57e0d1e4b31243a2f79031f5121ce0c7c598cb1862f6eb1e146fa2cc
3
+ metadata.gz: 9b5b7dfe4513a995ac2d5040a0fb94380d0a4da0a2181d2b0978a0dfd667715c
4
+ data.tar.gz: c5f6a40b5d3eac383ddecfa79088ecf102cf54413000944c619b4936fd775247
5
5
  SHA512:
6
- metadata.gz: c16426ceee5c8660c145ea9bf4de09cc58bff30d726992628616c9795c8bd54b102f524f6a28514660322e1465d2fe3f0071ea2894000ccfc30ed88a99d9ad86
7
- data.tar.gz: fc8f8a3654ef0de78864a808cb797622189ee50becba25c1f0d1c095355655320c218c14d09a21f7baf87da34a1ec8bdcc93d50bd1f69ecc8dccc13708c090d6
6
+ metadata.gz: bf966c315804ae8855683eceac6ba725ad607682a630873f2d84ceee8471fe23c22b00127e9391d7b1737aa0e1c8c65e54be085e2a7c47a4436aece62fa56d0f
7
+ data.tar.gz: 2464ebbbb77c3d71c9a47da2908c61f8d90cd76f043f00f748d1ccab41270b2d0ff9255ba06632dbdddf7d1d295e1204a314fc4f0cef69eb9419d213fc0a0232
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ro-crate (0.3.0)
4
+ ro-crate (0.4.1)
5
5
  addressable (~> 2.7.0)
6
6
  rubyzip (~> 2.0.0)
7
7
 
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-ruby', git: 'https://github.com/ResearchObject/ro-crate-ruby.git'
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 'ro_crate_ruby'
27
+ require 'ro_crate'
28
28
 
29
29
  # Make a new crate
30
30
  crate = ROCrate::Crate.new
data/Rakefile CHANGED
@@ -24,7 +24,7 @@ end
24
24
  task :console do
25
25
  require 'irb'
26
26
  require 'irb/completion'
27
- require 'ro_crate_ruby'
27
+ require 'ro_crate'
28
28
  ARGV.clear
29
29
  IRB.start
30
30
  end
File without changes
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ro-crate'
3
- s.version = '0.4.0'
3
+ s.version = '0.4.1'
4
4
  s.summary = 'Create, manipulate, read RO crates.'
5
5
  s.authors = ['Finn Bacall']
6
6
  s.email = 'finn.bacall@manchester.ac.uk'
@@ -2,7 +2,7 @@ require 'simplecov'
2
2
  SimpleCov.start
3
3
 
4
4
  require 'test/unit'
5
- require 'ro_crate_ruby'
5
+ require 'ro_crate'
6
6
  require 'webmock/test_unit'
7
7
 
8
8
  def fixture_file(name, *args)
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.0
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