diff options
Diffstat (limited to 'omnibus/Gemfile')
-rw-r--r-- | omnibus/Gemfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/omnibus/Gemfile b/omnibus/Gemfile new file mode 100644 index 0000000000..ad415d576a --- /dev/null +++ b/omnibus/Gemfile @@ -0,0 +1,18 @@ +source 'https://rubygems.org' + +gem 'omnibus', github: 'chef/omnibus' +gem 'omnibus-software', github: 'chef/omnibus-software' + +# This development group is installed by default when you run `bundle install`, +# but if you are using Omnibus in a CI-based infrastructure, you do not need +# the Test Kitchen-based build lab. You can skip these unnecessary dependencies +# by running `bundle install --without development` to speed up build times. +group :development do + # Use Berkshelf for resolving cookbook dependencies + gem 'berkshelf', '~> 3.0' + + # Use Test Kitchen with Vagrant for converging the build environment + gem 'test-kitchen', '~> 1.4.0' + gem 'kitchen-vagrant', '~> 0.19.0' + gem 'winrm-transport', '~> 1.0' +end |