eipiai 0.5.0 → 0.5.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
  SHA1:
3
- metadata.gz: a3bfe7f33ca1682dcbcde9d21595b1bb6119bee8
4
- data.tar.gz: 9e51991a96b67325b3add840f5512be6b769f4e5
3
+ metadata.gz: 77b1cb59846fc5bde66cd2a8a1ac8afaca678780
4
+ data.tar.gz: 123cc1037faf9288fc0f910fe13ac00a36dced22
5
5
  SHA512:
6
- metadata.gz: 3cab26999f86e06b1a37bbbd7fab0aa3c36a6bc199e3f325ca629b1e51625351c033f5450cca5279a88931a5bff02783010778814a83b187e8b5eee70e7d1056
7
- data.tar.gz: a8f09782eb7b1d274509961a89f12546f30c6823fd462570200dc7186ccca1a288ff41d925be437bac77e9d5a39290e072efd3bb75c2c62647c993b6e7b28ef5
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
 
@@ -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[/(\S+):/, 1])
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)
@@ -3,5 +3,5 @@
3
3
  # The current version of the Eipiai library.
4
4
  #
5
5
  module Eipiai
6
- VERSION = '0.5.0'
6
+ VERSION = '0.5.1'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eipiai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean Mertz