diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..33a23b15 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +version: '{build}' + +skip_tags: true + +environment: + matrix: + - ruby_version: "22" + - ruby_version: "22-x64" + +install: + - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% + - gem install bundler --no-document + - bundle install --retry=3 + +test_script: + - bundle exec rspec + +build: off