config_curator 0.5.0 → 1.0.0
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 +5 -5
- data/.travis.yml +5 -2
- data/CHANGELOG.md +4 -0
- data/LICENSE.txt +1 -1
- data/README.md +22 -23
- data/config_curator.gemspec +2 -2
- data/lib/config_curator/package_lookup.rb +1 -1
- data/lib/config_curator/version.rb +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b645e49036241bbe56052ba50f259345c00a1eee5b1f517b0b4b184656e473bc
|
4
|
+
data.tar.gz: f7c9f384b2a744ca3c3bc02244d8d3ae9018e6cea2dff5a3c1d272119bf7e883
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a5fa8dcafa00d2ea908d005f7237cbf2ca7ca5da2b7c0bcacf24cca045ae13741f33479ca6b1801ec993fc7c8d92c0410f29bc5b98b78931bf9d606cc0fa9c0
|
7
|
+
data.tar.gz: 0620f1b3e42e82fee1e7435ef69b14829c258740605f3db91699f23a9b325bbb57d237b69740fbd7cf7ea30042386b4e2b2871f319862a5612608b771ddffc6c
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2014-
|
3
|
+
Copyright (c) 2014-2018 Evan Boyd Sosenko
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
6
|
this software and associated documentation files (the "Software"), to deal in
|
data/README.md
CHANGED
@@ -4,13 +4,19 @@
|
|
4
4
|
[](./LICENSE.txt)
|
5
5
|
[](https://gemnasium.com/razor-x/config_curator)
|
6
6
|
[](https://travis-ci.org/razor-x/config_curator)
|
7
|
-
[](https://codecov.io/github/razor-x/config_curator)
|
8
|
-
[](https://codeclimate.com/github/razor-x/config_curator)
|
9
7
|
|
10
8
|
by Evan Boyd Sosenko.
|
11
9
|
|
12
10
|
_Simple and intelligent configuration file management._
|
13
11
|
|
12
|
+
📢 Version 1 is the first and last stable release.
|
13
|
+
|
14
|
+
🎉 Config Curator has been **rewritten from scratch in Node.js:**
|
15
|
+
https://github.com/rxrc/curator.
|
16
|
+
Users are encouraged to use the Node.js version
|
17
|
+
which is much faster, has zero dependencies,
|
18
|
+
and provides an improved feature set with a similar manifest format.
|
19
|
+
|
14
20
|
## Description
|
15
21
|
|
16
22
|
Config Curator is a flexible configuration and dotfile manager.
|
@@ -210,25 +216,12 @@ Options:
|
|
210
216
|
[--debug], [--no-debug]
|
211
217
|
```
|
212
218
|
|
213
|
-
#### Uninstalling units
|
214
|
-
|
215
|
-
Currently all units have an uninstall method.
|
216
|
-
Smart uninstall via `curate uninstall` is planned for an
|
217
|
-
[upcoming release](https://github.com/razor-x/config_curator/issues/7).
|
218
|
-
|
219
219
|
### Scripting
|
220
220
|
|
221
221
|
Config Curator is fully scriptable for easy inclusion into other Ruby programs.
|
222
222
|
The API is well documented for this purpose
|
223
223
|
(see [Documentation](#documentation) above).
|
224
224
|
|
225
|
-
### Plugins
|
226
|
-
|
227
|
-
Plugin support is
|
228
|
-
[planned for an upcoming release](https://github.com/razor-x/config_curator/issues/8).
|
229
|
-
If you like Config Curator and want to write a plugin,
|
230
|
-
please let me know!
|
231
|
-
|
232
225
|
## Installation
|
233
226
|
|
234
227
|
You can install the gem either with Bundler or directly.
|
@@ -283,16 +276,16 @@ Run `rake -T` to see all Rake tasks.
|
|
283
276
|
|
284
277
|
```
|
285
278
|
rake all # Run all tasks
|
286
|
-
rake build # Build config_curator-0.
|
279
|
+
rake build # Build config_curator-1.0.0.gem into the pkg directory
|
287
280
|
rake bump:current[tag] # Show current gem version
|
288
281
|
rake bump:major[tag] # Bump major part of gem version
|
289
282
|
rake bump:minor[tag] # Bump minor part of gem version
|
290
283
|
rake bump:patch[tag] # Bump patch part of gem version
|
291
284
|
rake bump:pre[tag] # Bump pre part of gem version
|
292
285
|
rake bump:set # Sets the version number using the VERSION environment variable
|
293
|
-
rake install # Build and install config_curator-0.
|
294
|
-
rake install:local # Build and install config_curator-0.
|
295
|
-
rake release # Create tag
|
286
|
+
rake install # Build and install config_curator-1.0.0.gem into system gems
|
287
|
+
rake install:local # Build and install config_curator-1.0.0.gem into system gems without network access
|
288
|
+
rake release # Create tag v1.0.0 and build and push config_curator-1.0.0.gem to Rubygems
|
296
289
|
rake rubocop # Run RuboCop
|
297
290
|
rake rubocop:auto_correct # Auto-correct RuboCop offenses
|
298
291
|
rake spec # Run RSpec code examples
|
@@ -328,7 +321,13 @@ Config Curator is licensed under the MIT license.
|
|
328
321
|
|
329
322
|
## Warranty
|
330
323
|
|
331
|
-
This software is provided "as is" and
|
332
|
-
implied warranties, including,
|
333
|
-
warranties of
|
334
|
-
|
324
|
+
This software is provided by the copyright holders and contributors "as is" and
|
325
|
+
any express or implied warranties, including, but not limited to, the implied
|
326
|
+
warranties of merchantability and fitness for a particular purpose are
|
327
|
+
disclaimed. In no event shall the copyright holder or contributors be liable for
|
328
|
+
any direct, indirect, incidental, special, exemplary, or consequential damages
|
329
|
+
(including, but not limited to, procurement of substitute goods or services;
|
330
|
+
loss of use, data, or profits; or business interruption) however caused and on
|
331
|
+
any theory of liability, whether in contract, strict liability, or tort
|
332
|
+
(including negligence or otherwise) arising in any way out of the use of this
|
333
|
+
software, even if advised of the possibility of such damage.
|
data/config_curator.gemspec
CHANGED
@@ -25,12 +25,12 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.add_development_dependency 'bundler', '~> 1.6'
|
26
26
|
spec.add_development_dependency 'bump', '~> 0.5'
|
27
27
|
|
28
|
-
spec.add_development_dependency 'yard', '~> 0.8
|
28
|
+
spec.add_development_dependency 'yard', '~> 0.8'
|
29
29
|
spec.add_development_dependency 'yard-redcarpet-ext', '~> 0.0.3'
|
30
30
|
spec.add_development_dependency 'redcarpet', '~> 3.2'
|
31
31
|
spec.add_development_dependency 'github-markup', '~> 1.3'
|
32
32
|
|
33
|
-
spec.add_development_dependency 'rubocop', '~> 0.28'
|
33
|
+
spec.add_development_dependency 'rubocop', '~> 0.28.0'
|
34
34
|
|
35
35
|
spec.add_development_dependency 'rake', '~> 10.4'
|
36
36
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: config_curator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
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:
|
11
|
+
date: 2018-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 0.8
|
75
|
+
version: '0.8'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0.8
|
82
|
+
version: '0.8'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: yard-redcarpet-ext
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version:
|
131
|
+
version: 0.28.0
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version:
|
138
|
+
version: 0.28.0
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: rake
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -324,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
324
324
|
version: '0'
|
325
325
|
requirements: []
|
326
326
|
rubyforge_project:
|
327
|
-
rubygems_version: 2.
|
327
|
+
rubygems_version: 2.7.3
|
328
328
|
signing_key:
|
329
329
|
specification_version: 4
|
330
330
|
summary: Simple and intelligent configuration file management.
|
@@ -338,4 +338,3 @@ test_files:
|
|
338
338
|
- spec/units/component_spec.rb
|
339
339
|
- spec/units/config_file_spec.rb
|
340
340
|
- spec/units/symlink_spec.rb
|
341
|
-
has_rdoc:
|