derby 0.0.3 → 0.1.0

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/README.md +13 -0
  4. data/VERSION +1 -1
  5. metadata +11 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 54fd9bb936ad226bf7bd68d7de920fc723caf9cc
4
- data.tar.gz: f21a21f9a4c1809718dba747503e9602df43143a
3
+ metadata.gz: b180db436eafb950a028969c5d9414ae8058af2b
4
+ data.tar.gz: 7a73d8de8a44055663d687a71e1d677161e69d14
5
5
  SHA512:
6
- metadata.gz: 04024770dadd33916dd7ad5cc5f917178af5a747b463f855da0581fbcb353a0d5ba4a65944528a78d224085ec45cdeaff37cb3538a563e49196f0ed6c777b42a
7
- data.tar.gz: 7a270ed6ecbd3f7fdcc5423156139433d339e95378c9fbb8d53c0414a46f744c109cc6b12f3803d7e4c9cc87ebcdc2ab9e0f645188ebd836751faac163d0ea4f
6
+ metadata.gz: 79d2aa4a3e2ac5dbd76a86580ebfa83f41f930b58a9e2ed5abf80365c6f2ffdafbec6479f17df29664a2dd861f09c7393065b39bd329464d50c74aa850558a20
7
+ data.tar.gz: 8a286f2e8a7d42cf1636adeaf5382c2445e788c1e56e6f05aca490621d7d0b0000a902ef07d6877a8da417d34cd932c644ea9d0e277d7a4f55d7c0ade49581ab
@@ -1,3 +1,15 @@
1
+ 0.1.0 - 2016-02-09
2
+ ------------------
3
+
4
+ - Upgrade RDF::LDP to 0.5.1.
5
+ - Fixes a bug in cleanly differentiating resources with a trailing '/'
6
+ - Fixes ldp:insertedContentRelation for Indirect Containers
7
+
8
+ 0.0.3 - 2016-02-05
9
+ ------------------
10
+
11
+ - Move derby/server into lib directory
12
+
1
13
  0.0.2 - 2016-02-05
2
14
  ------------------
3
15
 
data/README.md CHANGED
@@ -8,6 +8,19 @@ the [Fedora Commons](http://fedorarepository.org/) API specification.
8
8
 
9
9
  Derby is an LDP Server with Fedora support.
10
10
 
11
+ Implementation Status
12
+ ---------------------
13
+
14
+ The base LDP implementation is provided by
15
+ [`RDF::LDP`](https://github.com/ruby-rdf/rdf-ldp). `ldp:RDFSource` support is
16
+ in-memory only; `ldp:NonRDFSource`s are stored on disk at `./.storage` and are
17
+ not currently cleaned up on server shutdown.
18
+
19
+ Further development depends on progress specifying a Fedora Commons Repository
20
+ API. Known API issues & questions are tracked with the
21
+ [fcr api](https://github.com/fcrepo4-labs/derby/issues?q=is%3Aissue+is%3Aopen+label%3A%22fcr+api%22)
22
+ tag.
23
+
11
24
  Installation
12
25
  ------------
13
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.1.0
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: derby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Johnson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-02-05 00:00:00.000000000 Z
11
+ date: 2016-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdf-ldp
@@ -16,14 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.5.1
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - "~>"
25
28
  - !ruby/object:Gem::Version
26
- version: '0.4'
29
+ version: '0.5'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 0.5.1
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: rake
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
142
  version: '0'
137
143
  requirements: []
138
144
  rubyforge_project:
139
- rubygems_version: 2.4.5.1
145
+ rubygems_version: 2.2.0
140
146
  signing_key:
141
147
  specification_version: 4
142
148
  summary: A pure Ruby Fedora Commons implementation.