Open moofish32 opened 7 years ago
Unfortunately that property didn't exist in some Chef versions I support. It would have to either be guarded on a defined?
or check a version, and it hasn't seemed worthwhile to go there yet. You can try compile_time(true) if defined?(compile_time)
and I think that works given the context, but there is so much method_missing that I've lost track.
Merging #11 into master will decrease coverage by
0.1%
. The diff coverage is0%
.
@@ Coverage Diff @@
## master #11 +/- ##
==========================================
- Coverage 83.37% 83.27% -0.11%
==========================================
Files 15 15
Lines 824 825 +1
==========================================
Hits 687 687
- Misses 137 138 +1
Impacted Files | Coverage Δ | |
---|---|---|
lib/poise_archive/archive_providers/zip.rb | 28.57% <0%> (-0.7%) |
:arrow_down: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 32f0626...1807ef7. Read the comment docs.
@coderanger Isn't compile_time a 12.1+ feature which is what this cookbook requires?
Chef 12 was EOL, it's time to merge it.
I am using poise archive in another cookbook and recently turned on deprecations as errors in my Chef 12 environment. I get the following:
I believe this is tracked back to the
chef_gem rubyzip
resource which I have updated.