Skip to content

Commit

Permalink
update puma.ps1 for nio4r & Ruby 2.2 [skip travis] (#1872)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSP-Greg authored and nateberkopec committed Jul 30, 2019
1 parent 3066498 commit 0b584ab
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions win_gem_test/puma.ps1
Expand Up @@ -34,6 +34,15 @@ function Pre-Compile {
Write-Host Compiling With $env:SSL_VERS
}

#———————————————————————————————————————————————————————————————— Pre-Gem-Install
function Pre-Gem-Install {
if ($ruby -lt '23') {
gem install -N --no-user-install nio4r:2.3.1
} else {
gem install -N --no-user-install nio4r
}
}

#———————————————————————————————————————————————————————————————— Run-Tests
function Run-Tests {
# call with comma separated list of gems to install or update
Expand Down

0 comments on commit 0b584ab

Please sign in to comment.