fake_consul 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +1 -0
- data/lib/fake_consul/server.rb +2 -0
- data/lib/fake_consul/version.rb +1 -1
- data/spec/spec_helper.rb +0 -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: 92900fd04f309c9956669bff7d8f5d2e4ad8ac37
|
4
|
+
data.tar.gz: 2d5000f4ebf8f5201f93da339118eb8abfc19c02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
data/lib/fake_consul/server.rb
CHANGED
data/lib/fake_consul/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED