eipiai 0.5.0 → 0.5.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/CHANGELOG.md +8 -0
- data/lib/eipiai/roar/ext/hal.rb +1 -1
- data/lib/eipiai/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77b1cb59846fc5bde66cd2a8a1ac8afaca678780
|
|
4
|
+
data.tar.gz: 123cc1037faf9288fc0f910fe13ac00a36dced22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc2303a764828ed2a40072a55f9c7eb050c01f335b08ddebf209ee799c259b1584311913d397b46159dbc6391bee76993bacfd136a3dbffaa12e8a4eb3b5d473
|
|
7
|
+
data.tar.gz: ff6259a0874cce63d6a7c172b6ed93893fbc3c6bce45613ac3047f0d4a5b1f2f760df7a6dc6b48a4d374f590668073815dfef30e02dcc3dd17e95586b305db39
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [v0.5.0](https://github.com/blendle/eipiai/tree/v0.5.0) (2015-12-14)
|
|
4
|
+
[Full Changelog](https://github.com/blendle/eipiai/compare/v0.4.0...v0.5.0)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- add health endpoint Eipiai::HealthResource [\#8](https://github.com/blendle/eipiai/pull/8) ([JeanMertz](https://github.com/JeanMertz))
|
|
9
|
+
- move configuration object to separate file [\#7](https://github.com/blendle/eipiai/pull/7) ([JeanMertz](https://github.com/JeanMertz))
|
|
10
|
+
|
|
3
11
|
## [v0.4.0](https://github.com/blendle/eipiai/tree/v0.4.0) (2015-12-14)
|
|
4
12
|
[Full Changelog](https://github.com/blendle/eipiai/compare/v0.3.0...v0.4.0)
|
|
5
13
|
|
data/lib/eipiai/roar/ext/hal.rb
CHANGED
|
@@ -41,7 +41,7 @@ module Roar
|
|
|
41
41
|
super.tap do |hash|
|
|
42
42
|
curies = Set.new
|
|
43
43
|
hash.fetch('_links', {}).each do |name, _|
|
|
44
|
-
next unless (curie = name[
|
|
44
|
+
next unless (curie = name[/^(\S+?):\S+/, 1])
|
|
45
45
|
next unless (curie_href = Eipiai.configuration.curie_uris[curie.to_sym])
|
|
46
46
|
|
|
47
47
|
curies.add(name: curie, href: curie_href, templated: true)
|
data/lib/eipiai/version.rb
CHANGED