Skip to content

Commit

Permalink
Test Gem on Windows with Appveyor
Browse files Browse the repository at this point in the history
Fixes [#114].

Inspired by [How to Test Ruby Projects on Windows][post].

[#114]: #114
[post]: https://mattbrictson.com/how-to-test-ruby-windows
  • Loading branch information
seanpdoyle committed Nov 20, 2015
1 parent 1477ccb commit 74842ed
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 74842ed

Please sign in to comment.