8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 91e4b80 + 77eb6d8 commit 489c7d8Copy full SHA for 489c7d8
azure-pipelines.yml
@@ -0,0 +1,11 @@
1
+jobs:
2
+- job: macOS
3
+ pool:
4
+ vmImage: 'macos-10.13'
5
+ steps:
6
+ - script: |
7
+ gem install bundler
8
+ bundle install --retry=3 --jobs=4
9
+ displayName: 'bundle install'
10
+ - script: ruby -Ilib exe/rake
11
+ displayName: 'ruby -Ilib exe/rake'
test/helper.rb
@@ -28,7 +28,7 @@ class TaskManager
28
include Rake::TaskManager
29
end
30
31
- RUBY = ENV["BUNDLE_RUBY"] || Gem.ruby
+ RUBY = File.realpath(ENV["BUNDLE_RUBY"] || Gem.ruby)
32
33
def setup
34
ARGV.clear
0 commit comments