etcdist 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 +4 -4
- data/.travis.yml +1 -0
- data/README.md +14 -8
- data/etcdist.gemspec +1 -1
- data/lib/etcdist/version.rb +1 -1
- metadata +2 -3
- data/TODO +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cea5b99a816170770f2fa9e8028fc80494cbcd45
|
4
|
+
data.tar.gz: 439f797ba033ba839e4e92707a0a8179697c1ef5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ee8acb3536ea464667501d123107341290148c4ecec423cbc5ae375a7e5a4f2ce8322328fc4b0b1738d8d549dfc2ea3e3b2969e23e907d520b8d7550e40c8d1
|
7
|
+
data.tar.gz: 327c52e29f27efdb91f75578a3a6d425281e809345210625e530f68513f317a564a33885b2339bf4eafdf29dd1486abcca4fa1c817c16616de70dd590ef64694
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -15,11 +15,11 @@ gem 'etcdist'
|
|
15
15
|
|
16
16
|
And then execute:
|
17
17
|
|
18
|
-
|
18
|
+
bundle
|
19
19
|
|
20
20
|
Or install it yourself as:
|
21
21
|
|
22
|
-
|
22
|
+
gem install etcdist
|
23
23
|
|
24
24
|
## Usage
|
25
25
|
|
@@ -89,24 +89,30 @@ You can control the log level, as follows:
|
|
89
89
|
Etcdist::Log.level = :info
|
90
90
|
```
|
91
91
|
|
92
|
-
##
|
92
|
+
## Get Involved
|
93
|
+
|
94
|
+
### Mailing List
|
95
|
+
|
96
|
+
Use the [etcdist mailing list](https://groups.google.com/group/etcdist) to get in touch with other users and developers.
|
97
|
+
|
98
|
+
### Developing
|
93
99
|
|
94
100
|
Clone the source code. To see what's possible, run:
|
95
101
|
|
96
|
-
|
102
|
+
rake -T
|
97
103
|
|
98
104
|
To get the acceptance test to pass, make sure you've got etcd running locally:
|
99
105
|
|
100
|
-
|
106
|
+
docker run -d -p 4001:4001 coreos/etcd
|
101
107
|
|
102
108
|
To continuously run tests, run:
|
103
109
|
|
104
|
-
|
110
|
+
guard
|
105
111
|
|
106
|
-
|
112
|
+
### Contributing
|
107
113
|
|
108
114
|
1. Fork it
|
109
115
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
110
116
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
111
117
|
4. Push to the branch (`git push origin my-new-feature`)
|
112
|
-
5. Create a new Pull Request
|
118
|
+
5. Create a new Pull Request
|
data/etcdist.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
16
16
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
17
17
|
spec.require_paths = ['lib']
|
18
|
-
spec.required_ruby_version = '>=
|
18
|
+
spec.required_ruby_version = '>= 1.9.3'
|
19
19
|
|
20
20
|
spec.add_runtime_dependency 'etcd', '~> 0.2.4'
|
21
21
|
spec.add_runtime_dependency 'mixlib-log'
|
data/lib/etcdist/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: etcdist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Springer, Part of Springer Science+Business Media
|
@@ -136,7 +136,6 @@ files:
|
|
136
136
|
- LICENSE.txt
|
137
137
|
- README.md
|
138
138
|
- Rakefile
|
139
|
-
- TODO
|
140
139
|
- etcdist.gemspec
|
141
140
|
- lib/etcdist.rb
|
142
141
|
- lib/etcdist/log.rb
|
@@ -161,7 +160,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
161
160
|
requirements:
|
162
161
|
- - '>='
|
163
162
|
- !ruby/object:Gem::Version
|
164
|
-
version:
|
163
|
+
version: 1.9.3
|
165
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
166
165
|
requirements:
|
167
166
|
- - '>='
|
data/TODO
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
# TODO
|
2
|
-
* think about / improve error handling (for example: write operation is not atomic)
|
3
|
-
* gemspec: specify required ruby version
|
4
|
-
|
5
|
-
## Lower priority
|
6
|
-
* feature: **optionally** remove directories from etcd if no longer present
|
7
|
-
* feature: do not process directories that don't have any modified files
|
8
|
-
* feature: provide etcdist as a binary so that it can be executed from the command line.
|
9
|
-
|