This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "chef-dk-gemset" gem with full set of chef-dk deps
Includes a Gemfile and Gemfile.lock representing what should be built into omnibus.
- Loading branch information
Showing
10 changed files
with
1,193 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Project specific: generated version file | ||
generated | ||
|
||
# OS stuff | ||
/tmp/ | ||
# Mac folder properties | ||
.DS_Store | ||
|
||
# Gemfile.lock is the whole point of this | ||
! Gemfile.lock | ||
! Gemfile.local | ||
|
||
# build packages | ||
pkg | ||
|
||
# Bundler | ||
# Do not check in the .bundle directory, or any of the files inside it. Those files are specific to each p articular machine, and are used to persist installation options between runs of the bundle install command . | ||
/.bundle/ | ||
# ignore some common Bundler 'binstubs' directory names | ||
# http://gembundler.com/man/bundle-exec.1.html | ||
/b/ | ||
/binstubs/ | ||
|
||
# RVM and RBENV ruby version files | ||
.rbenv-version | ||
.rvmrc | ||
.ruby-version | ||
.ruby-gemset | ||
|
||
# Tests | ||
.autotest | ||
/coverage/ | ||
|
||
# IDE files | ||
# ... Visual Studio? | ||
.project | ||
# VS Code | ||
.settings | ||
# VIM | ||
*~ | ||
|
||
# Documentation | ||
.yardoc/ | ||
_yardoc/ | ||
|
||
# Chef | ||
.kitchen | ||
Berksfile.lock | ||
.chef | ||
|
||
# Vagrant | ||
.vagrant | ||
|
||
# Not sure what these are for | ||
/tags/ | ||
*/tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
source "https://rubygems.org" | ||
|
||
# Specify your gem"s dependencies in chef-dk-gemset.gemspec | ||
gemspec | ||
|
||
# Allow Travis to run tests with different dependency versions | ||
gem "chef-dk", path: ".." | ||
gem "appbundler", github: "chef/appbundler", branch: "jk/multiple-gems" | ||
install_if -> { RUBY_PLATFORM.downcase !~ /(aix|cygwin)/ } do | ||
gem "ruby-shadow" | ||
end | ||
|
||
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"] |
Oops, something went wrong.