0.0
No commit activity in last 3 years
No release in over 3 years
Access to AppVeyor Build Worker API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.9
~> 10.0
>= 0

Runtime

>= 0
 Project Readme

AppVeyor::Worker

Build status Gem Version

Access to AppVeyor Build Worker API.

Installation

Add this line to your application's Gemfile:

gem 'appveyor-worker' # if ENV['APPVEYOR_API_URL']

And then execute:

$ bundle

Or install it yourself as:

$ gem install appveyor-worker

Usage

require 'appveyor/worker'

AppVeyor::Worker.message "Hello, world!", "It's me"

Minitest

When using AppVeyor::Worker under Minitest the latter automagically requires the former. Just add to Gemfile et voila! Test results will populate list and AppVeyor::Worker.message is available in your tests.

In addition, Minitest seed will be sent as AppVeyor message.

RSpec

For RSpec you need two lines of code, as mentioned above:

  1. Add gem to Gemfile

  2. Require gem

    • Either directly in one of your ./spec/*_spec.rb files
    • Or by adding -r appveyor/worker to ./.rspec

RScpec seed is also reported as standard AppVeyor message.