Skip to content

Commit 4fe4c3f

Browse files
committed
Removed duplicate dep and check linux gem are not trying to install on windows
Signed-off-by: nitin sanghi <nsanghi@progress.com>
1 parent 91c05e4 commit 4fe4c3f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Gemfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ group :development do
2323
end
2424

2525
group :profile do
26-
gem "stackprof"
27-
gem "stackprof-webnav"
28-
gem "memory_profiler"
26+
unless RUBY_PLATFORM.match?(/mswin|mingw|windows/)
27+
gem "stackprof"
28+
gem "stackprof-webnav"
29+
gem "memory_profiler"
30+
end
2931
end

chef-cli.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,4 @@ Gem::Specification.new do |gem|
5050
gem.add_dependency "diff-lcs", ">= 1.0", "< 1.4" # 1.4 changes the output
5151
gem.add_dependency "pastel", "~> 0.7" # used for policyfile differ
5252
gem.add_dependency "license-acceptance", ">= 1.0.11", "< 3"
53-
gem.add_dependency "appbundler"
5453
end

0 commit comments

Comments
 (0)