From 96890940b5f148462fd1e90aac8daf24ea30a6bf Mon Sep 17 00:00:00 2001 From: Matt Wrock Date: Tue, 5 Jul 2016 16:10:51 -0700 Subject: maintain a chef-config Gemfile.lock --- chef-config/.gitignore | 1 - chef-config/Gemfile.lock | 45 +++++++++++++++++++++++++++++++++++++++++++++ tasks/dependencies.rb | 2 ++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 chef-config/Gemfile.lock diff --git a/chef-config/.gitignore b/chef-config/.gitignore index 0cb6eeb067..9106b2a345 100644 --- a/chef-config/.gitignore +++ b/chef-config/.gitignore @@ -1,6 +1,5 @@ /.bundle/ /.yardoc -/Gemfile.lock /_yardoc/ /coverage/ /doc/ diff --git a/chef-config/Gemfile.lock b/chef-config/Gemfile.lock new file mode 100644 index 0000000000..ca47fc2dd1 --- /dev/null +++ b/chef-config/Gemfile.lock @@ -0,0 +1,45 @@ +PATH + remote: . + specs: + chef-config (12.12.18) + fuzzyurl (~> 0.8.0) + mixlib-config (~> 2.0) + mixlib-shellout (~> 2.0) + +GEM + remote: https://rubygems.org/ + specs: + diff-lcs (1.2.5) + ffi (1.9.10-x86-mingw32) + fuzzyurl (0.8.0) + mixlib-config (2.2.1) + mixlib-shellout (2.2.6-universal-mingw32) + win32-process (~> 0.8.2) + wmi-lite (~> 1.0) + rake (10.5.0) + rspec-core (3.5.0) + rspec-support (~> 3.5.0) + rspec-expectations (3.5.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.5.0) + rspec-mocks (3.5.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.5.0) + rspec-support (3.5.0) + win32-process (0.8.3) + ffi (>= 1.0.0) + wmi-lite (1.0.0) + +PLATFORMS + ruby + x86-mingw32 + +DEPENDENCIES + chef-config! + rake (~> 10.0) + rspec-core (~> 3.2) + rspec-expectations (~> 3.2) + rspec-mocks (~> 3.2) + +BUNDLED WITH + 1.12.5 diff --git a/tasks/dependencies.rb b/tasks/dependencies.rb index 0b216f8e52..352283b461 100644 --- a/tasks/dependencies.rb +++ b/tasks/dependencies.rb @@ -25,6 +25,7 @@ namespace :dependencies do desc "Update all dependencies. dependencies:update to update as little as possible." task :update => %w{ dependencies:update_gemfile_lock + dependencies:update_chef_config_gemfile_lock dependencies:update_omnibus_overrides dependencies:update_omnibus_gemfile_lock dependencies:update_acceptance_gemfile_lock @@ -80,6 +81,7 @@ namespace :dependencies do end end + gemfile_lock_task :update_chef_config_gemfile_lock, dirs: %w{chef-config} gemfile_lock_task :update_omnibus_gemfile_lock, dirs: %w{omnibus} gemfile_lock_task :update_acceptance_gemfile_lock, dirs: %w{acceptance}, other_platforms: false, leave_frozen: false -- cgit v1.2.1