berkshelf 7.2.0 → 7.2.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/Gemfile +1 -9
- data/lib/berkshelf/file_syncer.rb +3 -0
- data/lib/berkshelf/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4950e40e68a8fa20ad29aa5d589f27e4dd3fa0d7966abaedae2a9fc81398bc42
|
|
4
|
+
data.tar.gz: 706ca0ccbf4033186ac0adb6b1da988a55028fa1ccfae5c09a02c2ac414d31b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4207838b3b203d6446a6f4d529e2d74a67a4109dadb206011be3e9f34a7bd3ca5373df4e3ec5e07994da54571d6c9d91c7c245cd45b4afdbe5b6481c5db9aec
|
|
7
|
+
data.tar.gz: 4a57a2691d696385dbf46aa141b69b5dcd619a920f9abfb3a8b4ce0f5c3155591216b7c1267a804f3f80c8b805875253824b67686a1141df0107e772329fb3dc
|
data/Gemfile
CHANGED
|
@@ -2,10 +2,6 @@ source "https://rubygems.org"
|
|
|
2
2
|
|
|
3
3
|
gemspec
|
|
4
4
|
|
|
5
|
-
group :changelog do
|
|
6
|
-
gem "github_changelog_generator"
|
|
7
|
-
end
|
|
8
|
-
|
|
9
5
|
group :build do
|
|
10
6
|
gem "rake", ">= 10.1"
|
|
11
7
|
end
|
|
@@ -22,11 +18,7 @@ group :development do
|
|
|
22
18
|
gem "rspec-its", ">= 1.2"
|
|
23
19
|
gem "webmock", ">= 1.11"
|
|
24
20
|
gem "http", ">= 0.9.8"
|
|
25
|
-
gem "chefstyle"
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
group :docs do
|
|
29
|
-
gem "yard", ">= 0.8"
|
|
21
|
+
gem "chefstyle"
|
|
30
22
|
end
|
|
31
23
|
|
|
32
24
|
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
|
|
@@ -89,6 +89,9 @@ module Berkshelf
|
|
|
89
89
|
destination = File.expand_path(destination)
|
|
90
90
|
FileUtils.ln_sf(target, "#{destination}/#{relative_path}")
|
|
91
91
|
when :file
|
|
92
|
+
# TODO: Workaround issue related to [1] which impacts running ChefSpec on Github Actions
|
|
93
|
+
# [1] https://github.com/docker/for-linux/issues/1015
|
|
94
|
+
FileUtils.touch(source_file)
|
|
92
95
|
FileUtils.cp(source_file, "#{destination}/#{relative_path}")
|
|
93
96
|
else
|
|
94
97
|
type = File.ftype(source_file)
|
data/lib/berkshelf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: berkshelf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamie Winsor
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2021-
|
|
15
|
+
date: 2021-06-15 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: mixlib-shellout
|
|
@@ -374,7 +374,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
374
374
|
- !ruby/object:Gem::Version
|
|
375
375
|
version: 2.0.0
|
|
376
376
|
requirements: []
|
|
377
|
-
rubygems_version: 3.
|
|
377
|
+
rubygems_version: 3.2.15
|
|
378
378
|
signing_key:
|
|
379
379
|
specification_version: 4
|
|
380
380
|
summary: Manages a Chef cookbook's dependencies
|