diff --git a/README.md b/README.md index fec5722..4c3d96a 100644 --- a/README.md +++ b/README.md @@ -110,13 +110,3 @@ end ``` Note that this helper deals with symbols/strings for you as well. - -# Identify dependencies from metadata.json that aren't up2date - -This gem provides the `check:metadata_deps` rake task: - -```console -$ bundle exec rake check:metadata_deps -Checking metadata.json - puppetlabs/stdlib (>= 4.25.0 < 7.0.0) doesn't match 7.1.0 -``` diff --git a/lib/voxpupuli/test/rake.rb b/lib/voxpupuli/test/rake.rb index 778cf4e..eb17325 100644 --- a/lib/voxpupuli/test/rake.rb +++ b/lib/voxpupuli/test/rake.rb @@ -1,5 +1,4 @@ require 'puppetlabs_spec_helper/rake_tasks' -require 'metadata_json_deps' PuppetLint.configuration.log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}' @@ -23,10 +22,3 @@ end end Rake::Task[:check].enhance ['check:trailing_whitespace'] - - -desc 'Run metadata-json-deps' -task :metadata_deps do - files = FileList['metadata.json'] - MetadataJsonDeps::run(files) -end diff --git a/voxpupuli-test.gemspec b/voxpupuli-test.gemspec index f307466..b1c0485 100644 --- a/voxpupuli-test.gemspec +++ b/voxpupuli-test.gemspec @@ -21,7 +21,6 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'puppetlabs_spec_helper', '>= 2.16.0' s.add_runtime_dependency 'rspec-puppet-facts', '>= 2.0.1', '< 3' s.add_runtime_dependency 'rspec-puppet-utils', '>= 1.9.5' - s.add_runtime_dependency 'metadata_json_deps', '>= 0.3.0' # Rubocop s.add_runtime_dependency 'rubocop', '~> 0.49.1'