diff --git a/Gemfile b/Gemfile index 0045f94c..3cd554a6 100644 --- a/Gemfile +++ b/Gemfile @@ -4,6 +4,7 @@ gemspec gem "rails", "4.2.4" gem "pry" +gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw] group :development, :test do gem "high_voltage", "~> 2.4.0" diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..45f6bd8d --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +version: '{build}' + +skip_tags: true + +environment: + matrix: + - ruby_version: "21" + - ruby_version: "21-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