appveyor-worker 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -1
- data/lib/appveyor/worker/version.rb +1 -1
- data/lib/minitest/appveyor_plugin.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42443bab6c2eb9ea2a639d73e1ac9217c4e44fee
|
|
4
|
+
data.tar.gz: 487eccd0cbf2d56bc53163137de33f203f9eac5e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab3aa9020f7acc62f5384c9f86d5c845a7c0e40993e0d65a218fd7a0f253024a505ffc642eed17d1c9ca4d6f502a7685da6b6b89d83594d605c17b788c527609
|
|
7
|
+
data.tar.gz: 72416a73e237e5224b0e9012b655bb7ed269c150fc168d7fb0c4f2abd5d1651ed78e434aec7624308985e4527041b50e067a9a5c8481a4b720b037645128f6d8
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# AppVeyor::Worker
|
|
2
2
|
|
|
3
3
|
[](https://ci.appveyor.com/project/ukoloff/appveyor-worker)
|
|
4
|
+
[](http://badge.fury.io/rb/appveyor-worker)
|
|
4
5
|
|
|
5
6
|
Access to [AppVeyor](http://www.appveyor.com/)
|
|
6
7
|
[Build Worker API](http://www.appveyor.com/docs/build-worker-api)
|
|
@@ -10,7 +11,7 @@ Access to [AppVeyor](http://www.appveyor.com/)
|
|
|
10
11
|
Add this line to your application's Gemfile:
|
|
11
12
|
|
|
12
13
|
```ruby
|
|
13
|
-
gem 'appveyor-worker'
|
|
14
|
+
gem 'appveyor-worker' # if ENV['APPVEYOR_API_URL']
|
|
14
15
|
```
|
|
15
16
|
|
|
16
17
|
And then execute:
|
|
@@ -28,3 +29,9 @@ require 'appveyor/worker'
|
|
|
28
29
|
|
|
29
30
|
AppVeyor::Worker.message "Hello, world!", "It's me"
|
|
30
31
|
```
|
|
32
|
+
|
|
33
|
+
When using `AppVeyor::Worker` under
|
|
34
|
+
[Minitest](https://github.com/seattlerb/minitest)
|
|
35
|
+
the latter automagically requires the former.
|
|
36
|
+
Just add to `Gemfile` et voila! Test results will populate list
|
|
37
|
+
and `AppVeyor::Worker.message` is available in your tests.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appveyor-worker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stas Ukolov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|