minitest-macos-notification 0.0.2 → 0.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 6a5e1b2f0e08fd26a8c95eb8fac6e6e3a2db8557
4
- data.tar.gz: ddbaa6c25982886f8ddf42818249a7ef51c4fc7c
2
+ SHA256:
3
+ metadata.gz: b011115bebe71ac3a3e663ebc4e44e9f2996acf948543023eabb43c653098b4f
4
+ data.tar.gz: b73ccdc3c4ebfcd4cb9b0c6d73149f4c165f7d6f9d6de658d02d58fc151e6bb3
5
5
  SHA512:
6
- metadata.gz: bf68ac87c76e31ca59c85225d3bd19e748efdb32092cb956beee05261c3ba53565aad179cc2683afff0b4e7df28cc09e72b6d892018d772dcb547408de86cafd
7
- data.tar.gz: 4d423f5bb61355dd6368b12a644c507e56adda1e3a83b7a9c698d16ebf92c64410c9bda8d061b4b1708cb07d8e093ab1340054546acad9ca40ced82b4ae6f5f0
6
+ metadata.gz: f08397e575a9d54083f698d836023fe7c4c7ffe5dba9c4ddd98c985e853d9dbd93c412571760d28cffe525074c00e456907128e4c19dffd513ab8db5ea4f36f1
7
+ data.tar.gz: 1b1a0ef04185027d030011ca2a3e199bd2da3f0a0cef0ec4b689172fd4cacba1b55ecbfbf9ccc4884aaddccc93de6ea0be6823593d21f5b7d015b7d999398fc4
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.5.1
data/.travis.yml CHANGED
@@ -1,5 +1 @@
1
- sudo: false
2
1
  language: ruby
3
- rvm:
4
- - 2.4.2
5
- before_install: gem install bundler -v 1.16.1
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minitest-macos-notification (0.0.2)
4
+ minitest-macos-notification (0.0.3)
5
5
  minitest (~> 5.0)
6
- minitest-reporters (~> 1.1)
6
+ minitest-reporters (~> 1.3.1)
7
7
  os (~> 1.0)
8
8
  terminal-notifier (~> 2.0)
9
9
 
@@ -15,14 +15,14 @@ GEM
15
15
  minitest (5.11.3)
16
16
  minitest-fail-fast (0.1.0)
17
17
  minitest (~> 5)
18
- minitest-reporters (1.2.0)
18
+ minitest-reporters (1.3.2)
19
19
  ansi
20
20
  builder
21
21
  minitest (>= 5.0)
22
22
  ruby-progressbar
23
23
  os (1.0.0)
24
24
  rake (10.5.0)
25
- ruby-progressbar (1.9.0)
25
+ ruby-progressbar (1.10.0)
26
26
  terminal-notifier (2.0.0)
27
27
 
28
28
  PLATFORMS
@@ -35,4 +35,4 @@ DEPENDENCIES
35
35
  rake (~> 10.0)
36
36
 
37
37
  BUNDLED WITH
38
- 1.16.1
38
+ 1.16.4
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Minitest macOS Notification
2
2
 
3
- Simple macOS notification reporter for Minitest Reporters, based on the [minitest-osx](https://github.com/tombell/minitest-osx) gem.
3
+ Simple macOS notification reporter for [Minitest Reporters](https://github.com/kern/minitest-reporters), based on the [minitest-osx](https://github.com/tombell/minitest-osx) gem.
4
4
 
5
5
  [![Gem Version](https://badge.fury.io/rb/minitest-macos-notification.svg)](http://badge.fury.io/rb/minitest-macos-notification)
6
6
  [![Build Status](https://travis-ci.org/sleepingstu/minitest-macos-notification.svg?branch=master)](https://travis-ci.org/sleepingstu/minitest-macos-notification)
@@ -25,6 +25,8 @@ Or install it yourself as:
25
25
  gem install minitest-macos-notification
26
26
  ```
27
27
 
28
+ Note: You will need [Minitest Reporters](https://github.com/kern/minitest-reporters) installed too to use this gem.
29
+
28
30
  ## Usage
29
31
 
30
32
  Add this to your test helper:
@@ -32,6 +34,7 @@ Add this to your test helper:
32
34
  ```ruby
33
35
  require "minitest/autorun"
34
36
  require "minitest/macos_notification"
37
+ require "minitest/reporters"
35
38
  ```
36
39
 
37
40
  Then in your `Minitest::Reporters.use!` block use:
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.3
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Minitest
4
4
  module MacosNotification
5
- VERSION = "0.0.2"
5
+ VERSION = File.read("VERSION").split("\n").first
6
6
  end
7
7
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = "Simple macOS notification reporter for Minitest Reporters"
14
14
  spec.description = "Simple macOS notification reporter for Minitest Reporters, based on the minitest-osx gem."
15
- spec.homepage = "https://github.com/sleepingstu/minitest-macos-notification"
15
+ spec.homepage = "https://github.com/schinery/minitest-macos-notification"
16
16
  spec.license = "MIT"
17
17
 
18
18
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.require_paths = ["lib"]
25
25
 
26
26
  spec.add_dependency "minitest", "~> 5.0"
27
- spec.add_dependency "minitest-reporters", "~> 1.1"
27
+ spec.add_dependency "minitest-reporters", "~> 1.3.1"
28
28
  spec.add_dependency "os", "~> 1.0"
29
29
  spec.add_dependency "terminal-notifier", "~> 2.0"
30
30
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-macos-notification
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stuart
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-04-04 00:00:00.000000000 Z
11
+ date: 2018-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.1'
33
+ version: 1.3.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.1'
40
+ version: 1.3.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: os
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -118,6 +118,7 @@ extra_rdoc_files: []
118
118
  files:
119
119
  - ".gitignore"
120
120
  - ".rubocop.yml"
121
+ - ".ruby-version"
121
122
  - ".travis.yml"
122
123
  - CODE_OF_CONDUCT.md
123
124
  - Gemfile
@@ -125,13 +126,14 @@ files:
125
126
  - LICENSE.txt
126
127
  - README.md
127
128
  - Rakefile
129
+ - VERSION
128
130
  - bin/console
129
131
  - bin/setup
130
132
  - lib/minitest/macos_notification.rb
131
133
  - lib/minitest/macos_notification/version.rb
132
134
  - lib/minitest/reporters/macos_notification_reporter.rb
133
135
  - minitest-macos-notification.gemspec
134
- homepage: https://github.com/sleepingstu/minitest-macos-notification
136
+ homepage: https://github.com/schinery/minitest-macos-notification
135
137
  licenses:
136
138
  - MIT
137
139
  metadata: {}
@@ -151,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
153
  version: '0'
152
154
  requirements: []
153
155
  rubyforge_project:
154
- rubygems_version: 2.6.13
156
+ rubygems_version: 2.7.7
155
157
  signing_key:
156
158
  specification_version: 4
157
159
  summary: Simple macOS notification reporter for Minitest Reporters