Skip to content

Commit 9d851d8

Browse files
authored
Merge pull request #340 from chef/removed_extra_gem_hab
removed extra gem from hab pkg build
2 parents a869dab + 68efd99 commit 9d851d8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ gemspec
44

55
gem "logger", "< 1.6" # 1.6 causes errors with mixlib-log < 3.1.1
66
gem "chefspec"
7+
gem "appbundler"
78

89
group :test do
910
gem "rake"
@@ -27,7 +28,6 @@ group :development do
2728
gem "pry"
2829
gem "pry-byebug"
2930
gem "rb-readline"
30-
gem "appbundler"
3131
end
3232

3333
group :profile do

habitat/plan.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function Invoke-Build {
4545
$env:GEM_HOME = "$HAB_CACHE_SRC_PATH/$pkg_dirname/vendor"
4646

4747
Write-BuildLine " ** Configuring bundler for this build environment"
48-
bundle config --local without integration deploy maintenance
48+
bundle config --local without integration deploy maintenance test development profile
4949
bundle config --local jobs 4
5050
bundle config --local retry 5
5151
bundle config --local silence_root_warning 1

habitat/plan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ do_build() {
3838

3939
build_line "Setting GEM_PATH=$GEM_HOME"
4040
export GEM_PATH="$GEM_HOME"
41-
bundle config --local without integration deploy maintenance
41+
bundle config --local without integration deploy maintenance test development profile
4242
bundle config --local jobs 4
4343
bundle config --local retry 5
4444
bundle config --local silence_root_warning 1

0 commit comments

Comments
 (0)