fake_consul 0.0.1 → 0.0.2
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 +5 -3
- data/fake_consul.gemspec +1 -1
- data/lib/fake_consul/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7b78a2bb0aeea58fb1eb765df461c4128791181
|
|
4
|
+
data.tar.gz: 9ce57b032ab5fb6f24ab7724ad44b85fd39129a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b83d6dca2529d8ac3cf0591f186d00bffcdcada6804f8467684ecfff71a158da4ac1d06b27b49bab846d6a623813654c7071131bfc50d355c947831cf7fdea3
|
|
7
|
+
data.tar.gz: d74b6a05a8b417ff4cd034b44c1777fede110928a947023e86e0bd3d4b2953b3c707add448cc0928aad223a9afbb963c58780e301fead86ce8c57eb204a6f022
|
data/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,14 @@
|
|
|
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
|
-
## [
|
|
5
|
+
## [v0.0.2] - 2015-11-27
|
|
6
|
+
- More open dependency on activesupport
|
|
6
7
|
|
|
7
8
|
## [v0.0.1] - 2015-11-27
|
|
8
9
|
### Initial implementation
|
|
9
10
|
- Adds simple consul client that fakes the consul server and provides state in an in-memory Hash.
|
|
10
11
|
- 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) )
|
|
11
12
|
|
|
12
|
-
[unreleased]: https://github.com/
|
|
13
|
-
[
|
|
13
|
+
[unreleased]: https://github.com/redbooth/fake_consul/compare/v0.0.2...HEAD
|
|
14
|
+
[v0.0.2]: https://github.com/redbooth/fake_consul/tree/v0.0.2
|
|
15
|
+
[v0.0.1]: https://github.com/redbooth/fake_consul/tree/v0.0.1
|
data/fake_consul.gemspec
CHANGED
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
|
-
spec.add_dependency "activesupport", "~> 3
|
|
21
|
+
spec.add_dependency "activesupport", "~> 3"
|
|
22
22
|
spec.add_development_dependency "bundler", "~> 1.5"
|
|
23
23
|
spec.add_development_dependency "rake"
|
|
24
24
|
end
|
data/lib/fake_consul/version.rb
CHANGED
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
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Saimon Moore
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 3
|
|
19
|
+
version: '3'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ~>
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 3
|
|
26
|
+
version: '3'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|