etcdist 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dc73b8eda4ee9eacfc54779da11566353567b730
4
- data.tar.gz: beaa73eba18000bb19dc1bd26763497b33589311
3
+ metadata.gz: cea5b99a816170770f2fa9e8028fc80494cbcd45
4
+ data.tar.gz: 439f797ba033ba839e4e92707a0a8179697c1ef5
5
5
  SHA512:
6
- metadata.gz: 96a096d9ef040a2225d88a00540195fa750a89d9c5006fc61a207ef9a78fa75423380de7de7d6bd43c00b08e6b898be84781850459e51b208669c96a7dab4c7c
7
- data.tar.gz: 8e6ab134d965683b6bdf47bb8e04fe1daa2f4fa9618420870b08446f0c64b24a3b3ab0185042d135a3cf18c49da423dc51154582bc000fe8d05805018cca140b
6
+ metadata.gz: 1ee8acb3536ea464667501d123107341290148c4ecec423cbc5ae375a7e5a4f2ce8322328fc4b0b1738d8d549dfc2ea3e3b2969e23e907d520b8d7550e40c8d1
7
+ data.tar.gz: 327c52e29f27efdb91f75578a3a6d425281e809345210625e530f68513f317a564a33885b2339bf4eafdf29dd1486abcca4fa1c817c16616de70dd590ef64694
@@ -1,5 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 1.9.3
3
4
  - 2.0.0
4
5
  - 2.1.0
5
6
 
data/README.md CHANGED
@@ -15,11 +15,11 @@ gem 'etcdist'
15
15
 
16
16
  And then execute:
17
17
 
18
- $ bundle
18
+ bundle
19
19
 
20
20
  Or install it yourself as:
21
21
 
22
- $ gem install etcdist
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
- ## Developing
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
- $ rake -T
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
- $ docker run -d -p 4001:4001 coreos/etcd
106
+ docker run -d -p 4001:4001 coreos/etcd
101
107
 
102
108
  To continuously run tests, run:
103
109
 
104
- $ guard
110
+ guard
105
111
 
106
- ## Contributing
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
@@ -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 = '>= 2.0'
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'
@@ -1,3 +1,3 @@
1
1
  module Etcdist
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
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
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: '2.0'
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
-