README.md in appveyor-worker-0.1.1 vs README.md in appveyor-worker-0.2.0
- old
+ new
@@ -1,12 +1,12 @@
# AppVeyor::Worker
[](https://ci.appveyor.com/project/ukoloff/appveyor-worker)
[](http://badge.fury.io/rb/appveyor-worker)
-Access to [AppVeyor](http://www.appveyor.com/)
-[Build Worker API](http://www.appveyor.com/docs/build-worker-api)
+Access to [AppVeyor][]
+[Build Worker API][].
## Installation
Add this line to your application's Gemfile:
@@ -28,10 +28,31 @@
require 'appveyor/worker'
AppVeyor::Worker.message "Hello, world!", "It's me"
```
+### Minitest
+
When using `AppVeyor::Worker` under
-[Minitest](https://github.com/seattlerb/minitest)
+[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.
+
+[AppVeyor]: http://www.appveyor.com/
+[Build Worker API]: http://www.appveyor.com/docs/build-worker-api
+[Minitest]: https://github.com/seattlerb/minitest
+[RSpec]: http://rspec.info/