From 74842edcb41cbf3fb126c123a8f8b7d62a42e385 Mon Sep 17 00:00:00 2001 From: Sean Doyle Date: Fri, 20 Nov 2015 10:59:02 -0500 Subject: [PATCH] Test Gem on Windows with Appveyor Fixes [#114]. Inspired by [How to Test Ruby Projects on Windows][post]. [#114]: https://github.com/thoughtbot/ember-cli-rails/issues/114 [post]: https://mattbrictson.com/how-to-test-ruby-windows --- appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appveyor.yml 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