r10k 3.9.0 → 3.9.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/.github/pull_request_template.md +1 -1
- data/.github/workflows/stale.yml +19 -0
- data/CHANGELOG.mkd +5 -0
- data/doc/dynamic-environments/configuration.mkd +6 -6
- data/lib/r10k/action/base.rb +8 -1
- data/lib/r10k/action/deploy/display.rb +39 -9
- data/lib/r10k/action/deploy/environment.rb +63 -40
- data/lib/r10k/action/deploy/module.rb +47 -28
- data/lib/r10k/action/puppetfile/check.rb +3 -1
- data/lib/r10k/action/puppetfile/install.rb +20 -23
- data/lib/r10k/action/puppetfile/purge.rb +8 -2
- data/lib/r10k/content_synchronizer.rb +83 -0
- data/lib/r10k/deployment.rb +1 -1
- data/lib/r10k/environment/base.rb +21 -1
- data/lib/r10k/environment/git.rb +0 -3
- data/lib/r10k/environment/svn.rb +4 -6
- data/lib/r10k/environment/with_modules.rb +18 -10
- data/lib/r10k/module.rb +1 -1
- data/lib/r10k/module/base.rb +17 -1
- data/lib/r10k/module/forge.rb +24 -18
- data/lib/r10k/module/git.rb +22 -13
- data/lib/r10k/module/local.rb +1 -0
- data/lib/r10k/module/svn.rb +11 -8
- data/lib/r10k/puppetfile.rb +55 -70
- data/lib/r10k/source/base.rb +4 -0
- data/lib/r10k/source/git.rb +14 -6
- data/lib/r10k/source/hash.rb +1 -3
- data/lib/r10k/source/svn.rb +0 -2
- data/lib/r10k/util/cleaner.rb +21 -0
- data/lib/r10k/version.rb +1 -1
- data/locales/r10k.pot +51 -59
- data/spec/r10k-mocks/mock_source.rb +1 -1
- data/spec/shared-examples/puppetfile-action.rb +7 -7
- data/spec/unit/action/deploy/display_spec.rb +32 -6
- data/spec/unit/action/deploy/environment_spec.rb +76 -48
- data/spec/unit/action/deploy/module_spec.rb +139 -31
- data/spec/unit/action/puppetfile/check_spec.rb +2 -2
- data/spec/unit/action/puppetfile/install_spec.rb +31 -10
- data/spec/unit/action/puppetfile/purge_spec.rb +25 -5
- data/spec/unit/module/forge_spec.rb +15 -13
- data/spec/unit/module/git_spec.rb +8 -0
- data/spec/unit/module_spec.rb +5 -5
- data/spec/unit/puppetfile_spec.rb +40 -26
- data/spec/unit/util/purgeable_spec.rb +2 -8
- metadata +5 -2
@@ -1,5 +1,6 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
require 'r10k/util/purgeable'
|
3
|
+
require 'r10k/util/cleaner'
|
3
4
|
|
4
5
|
RSpec.describe R10K::Util::Purgeable do
|
5
6
|
let(:managed_directories) do
|
@@ -21,14 +22,7 @@ RSpec.describe R10K::Util::Purgeable do
|
|
21
22
|
]
|
22
23
|
end
|
23
24
|
|
24
|
-
|
25
|
-
Struct.new(:managed_directories, :desired_contents) do
|
26
|
-
include R10K::Util::Purgeable
|
27
|
-
include R10K::Logging
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
subject { test_class.new(managed_directories, desired_contents) }
|
25
|
+
subject { R10K::Util::Cleaner.new(managed_directories, desired_contents) }
|
32
26
|
|
33
27
|
context 'without recurse option' do
|
34
28
|
let(:recurse) { false }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: r10k
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.9.
|
4
|
+
version: 3.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrien Thebo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored2
|
@@ -199,6 +199,7 @@ files:
|
|
199
199
|
- ".github/workflows/docker.yml"
|
200
200
|
- ".github/workflows/release.yml"
|
201
201
|
- ".github/workflows/rspec_tests.yml"
|
202
|
+
- ".github/workflows/stale.yml"
|
202
203
|
- ".gitignore"
|
203
204
|
- ".travis.yml"
|
204
205
|
- CHANGELOG.mkd
|
@@ -346,6 +347,7 @@ files:
|
|
346
347
|
- lib/r10k/cli/help.rb
|
347
348
|
- lib/r10k/cli/puppetfile.rb
|
348
349
|
- lib/r10k/cli/version.rb
|
350
|
+
- lib/r10k/content_synchronizer.rb
|
349
351
|
- lib/r10k/deployment.rb
|
350
352
|
- lib/r10k/deployment/config.rb
|
351
353
|
- lib/r10k/environment.rb
|
@@ -415,6 +417,7 @@ files:
|
|
415
417
|
- lib/r10k/svn/working_dir.rb
|
416
418
|
- lib/r10k/util/attempt.rb
|
417
419
|
- lib/r10k/util/basedir.rb
|
420
|
+
- lib/r10k/util/cleaner.rb
|
418
421
|
- lib/r10k/util/commands.rb
|
419
422
|
- lib/r10k/util/exec_env.rb
|
420
423
|
- lib/r10k/util/license.rb
|