summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-07-05 16:10:51 -0700
committerMatt Wrock <matt@mattwrock.com>2016-07-05 16:10:51 -0700
commit96890940b5f148462fd1e90aac8daf24ea30a6bf (patch)
treee12df13bf572918efd6fac54e3d9f42daa848515
parenta5f6e94eb097c5c16fab4c5be595ce889227ca4c (diff)
downloadchef_config_lock.tar.gz
maintain a chef-config Gemfile.lockchef_config_lock
-rw-r--r--chef-config/.gitignore1
-rw-r--r--chef-config/Gemfile.lock45
-rw-r--r--tasks/dependencies.rb2
3 files changed, 47 insertions, 1 deletions
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