config_curator 0.0.0 → 0.0.1
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 +2 -1
- data/CHANGELOG.md +2 -2
- data/Guardfile +10 -0
- data/README.md +1 -1
- data/Rakefile +2 -0
- data/bin/curate +5 -0
- data/config_curator.gemspec +3 -0
- data/lib/config_curator.rb +8 -0
- data/lib/config_curator/cli.rb +71 -0
- data/lib/config_curator/collection.rb +137 -0
- data/lib/config_curator/package_lookup.rb +77 -0
- data/lib/config_curator/unit.rb +122 -0
- data/lib/config_curator/units/component.rb +76 -0
- data/lib/config_curator/units/config_file.rb +76 -0
- data/lib/config_curator/units/symlink.rb +31 -0
- data/lib/config_curator/version.rb +2 -1
- data/spec/cli_spec.rb +69 -0
- data/spec/collection_spec.rb +280 -0
- data/spec/package_lookup_spec.rb +59 -0
- data/spec/spec_helper.rb +13 -0
- data/spec/unit_spec.rb +190 -0
- data/spec/units/component_spec.rb +59 -0
- data/spec/units/config_file_spec.rb +84 -0
- data/spec/units/symlink_spec.rb +46 -0
- metadata +55 -3
metadata
CHANGED
@@ -1,15 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: config_curator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Boyd Sosenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.1.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.1.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: thor
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.19.1
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.19.1
|
13
41
|
- !ruby/object:Gem::Dependency
|
14
42
|
name: bundler
|
15
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -181,7 +209,8 @@ dependencies:
|
|
181
209
|
description: ''
|
182
210
|
email:
|
183
211
|
- razorx@evansosenko.com
|
184
|
-
executables:
|
212
|
+
executables:
|
213
|
+
- curate
|
185
214
|
extensions: []
|
186
215
|
extra_rdoc_files: []
|
187
216
|
files:
|
@@ -191,13 +220,29 @@ files:
|
|
191
220
|
- ".yardopts"
|
192
221
|
- CHANGELOG.md
|
193
222
|
- Gemfile
|
223
|
+
- Guardfile
|
194
224
|
- LICENSE.txt
|
195
225
|
- README.md
|
196
226
|
- Rakefile
|
227
|
+
- bin/curate
|
197
228
|
- config_curator.gemspec
|
198
229
|
- lib/config_curator.rb
|
230
|
+
- lib/config_curator/cli.rb
|
231
|
+
- lib/config_curator/collection.rb
|
232
|
+
- lib/config_curator/package_lookup.rb
|
233
|
+
- lib/config_curator/unit.rb
|
234
|
+
- lib/config_curator/units/component.rb
|
235
|
+
- lib/config_curator/units/config_file.rb
|
236
|
+
- lib/config_curator/units/symlink.rb
|
199
237
|
- lib/config_curator/version.rb
|
238
|
+
- spec/cli_spec.rb
|
239
|
+
- spec/collection_spec.rb
|
240
|
+
- spec/package_lookup_spec.rb
|
200
241
|
- spec/spec_helper.rb
|
242
|
+
- spec/unit_spec.rb
|
243
|
+
- spec/units/component_spec.rb
|
244
|
+
- spec/units/config_file_spec.rb
|
245
|
+
- spec/units/symlink_spec.rb
|
201
246
|
homepage: https://github.com/razor-x/config_curator
|
202
247
|
licenses:
|
203
248
|
- MIT
|
@@ -223,5 +268,12 @@ signing_key:
|
|
223
268
|
specification_version: 4
|
224
269
|
summary: Simple and intelligent configuration file management.
|
225
270
|
test_files:
|
271
|
+
- spec/cli_spec.rb
|
272
|
+
- spec/collection_spec.rb
|
273
|
+
- spec/package_lookup_spec.rb
|
226
274
|
- spec/spec_helper.rb
|
275
|
+
- spec/unit_spec.rb
|
276
|
+
- spec/units/component_spec.rb
|
277
|
+
- spec/units/config_file_spec.rb
|
278
|
+
- spec/units/symlink_spec.rb
|
227
279
|
has_rdoc:
|