Skip to content

Commit

Permalink
(maint) Update Gemfile for beaker dependencies on Windows
Browse files Browse the repository at this point in the history
The beaker gem requires net-ping which has an implicit dependency on
win32-security. Unfortunately the gemspec for net-ping doesn't pull this in
either. This commit adds the gem into the Gemfile directly.
  • Loading branch information
glennsarti committed Oct 3, 2019
1 parent 7cd5c37 commit e78a224
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions package-testing/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ gem 'beaker-vmpooler', '= 1.3.3'
gem 'nokogiri', '= 1.10.4'
gem 'rake', '= 12.3.2'

# net-ping has a implicit dependency on win32-security
if File::ALT_SEPARATOR
gem 'win32-security', require: false
end

group :development do
gem 'pry-byebug', '~> 3.4'
end

0 comments on commit e78a224

Please sign in to comment.