fake_consul 0.0.4 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c76b728c0afcb6b01de66f6c2f41537bd05c8486
4
- data.tar.gz: be681e8dd4ab132ba2c1a906c9a4829412217595
3
+ metadata.gz: 92900fd04f309c9956669bff7d8f5d2e4ad8ac37
4
+ data.tar.gz: 2d5000f4ebf8f5201f93da339118eb8abfc19c02
5
5
  SHA512:
6
- metadata.gz: 22af7ca02fd95baa3d4a5c0798ab605b00b9ec6563f9d0e5f7e9c7eda3ef0d51828d204043ed0599d1c24c4c3b7b3ce23300df813dbfe625ed0c44c0453514fc
7
- data.tar.gz: a23224cad965118e9ff884d531f5252f77f896e51ab861a0be7979a630563c432899b238daca3318ab59794ca4cbb61aa93fbbc54990cf5a93565b6627b310f6
6
+ metadata.gz: 2774e65b99b718e2c1384df139ccb354a2fb435f81da3b80a416dd978192dc12ce457cf7149be2b4c92d589400935875d6bfc7fd4b98ea416ef60e226a8a202a
7
+ data.tar.gz: bfbde7e732bca79edc7d07538c27ac31993897de7740d237a098f768dabe3174be2cd1e23c29564b2c382792bb3de4709c83886242c35cc4835380917bbcb975
data/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## [v0.0.5] - 2015-11-27
6
+ - Add missing require
7
+
5
8
  ## [v0.0.4] - 2015-11-27
6
9
  - Compact hash on `put` to remove keys with nil values
7
10
 
@@ -16,7 +19,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
16
19
  - Adds simple consul client that fakes the consul server and provides state in an in-memory Hash.
17
20
  - Client API conforms to that of [Diplomat::Kv](http://www.rubydoc.info/github/WeAreFarmGeek/diplomat/Diplomat/Kv) (See source here: [Diplomat](https://github.com/WeAreFarmGeek/diplomat) )
18
21
 
19
- [unreleased]: https://github.com/redbooth/fake_consul/compare/v0.0.4...HEAD
22
+ [unreleased]: https://github.com/redbooth/fake_consul/compare/v0.0.5...HEAD
23
+ [v0.0.5]: https://github.com/redbooth/fake_consul/tree/v0.0.5
20
24
  [v0.0.4]: https://github.com/redbooth/fake_consul/tree/v0.0.4
21
25
  [v0.0.3]: https://github.com/redbooth/fake_consul/tree/v0.0.3
22
26
  [v0.0.2]: https://github.com/redbooth/fake_consul/tree/v0.0.2
data/README.md CHANGED
@@ -5,6 +5,7 @@ Fakes a consul server. Usecase is for feature specs that need to maintain state
5
5
  - Adds simple consul client that fakes the consul server and provides state in an in-memory Hash.
6
6
  - Client API conforms to that of [Diplomat::Kv](http://www.rubydoc.info/github/WeAreFarmGeek/diplomat/Diplomat/Kv) (See source here: [Diplomat](https://github.com/WeAreFarmGeek/diplomat) )
7
7
 
8
+ [![Gem Version](https://badge.fury.io/rb/fake_consul.svg)](https://badge.fury.io/rb/fake_consul)
8
9
  [![Build Status](https://circleci.com/gh/redbooth/fake_consul/tree/master.png)](https://circleci.com/gh/redbooth/fake_consul)
9
10
 
10
11
  ## Installation
@@ -1,3 +1,5 @@
1
+ require "active_support/hash_with_indifferent_access"
2
+
1
3
  module FakeConsul
2
4
  class Server < HashWithIndifferentAccess
3
5
 
@@ -1,3 +1,3 @@
1
1
  module FakeConsul
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  require 'minitest/spec'
2
2
  require 'minitest/autorun'
3
- require 'active_support/hash_with_indifferent_access'
4
3
  require 'fake_consul/server'
5
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fake_consul
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Saimon Moore