minitest-macos-notification 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9e2a17e993c94efdb985344072be2d666bd79f99efb2ead3798546b3e74e2ba
4
- data.tar.gz: 1f86d09e4229da05fab02ec5da6234a9ce110256a56201adfb39e79fa8d555f9
3
+ metadata.gz: 850155486e0e638149be1a560d88a3a51b7c0a9d22fb31bc7421084c09d6a337
4
+ data.tar.gz: c04d0f8e774a0ceca78fc3ceade6287d893e6821ebfdb1b97b82e858fd3548b9
5
5
  SHA512:
6
- metadata.gz: dbfe8680167f3faaa1587f4c7874dd91fa6283d45f21a9e9c4714aa4490fa0730129e6c645fa8dfa4d616039de0410d15c7c9478015387cb39122769b40df243
7
- data.tar.gz: f557e0d44ae28be81b6260b8efdd478d744d0d8880c2c6910d87369df4cffc31c768806c149681153f9cdfda480ed83693601d00d88c73afb2c40f55beb39c15
6
+ metadata.gz: 65e3c8ae0c61abdd8c434c804b91718cb287fee5bbd035a37a4c06338666878cedb1367198e4694e8fe3e7939a5012ad15866fdf9a807edd230bd3bde4f2d1c6
7
+ data.tar.gz: aa39b342b59ae0b2b57f587db24a03093c5eda3b41e453f0c8b92d753111aa140afa7e3c1e7e4f7993348cd32e02cb032d4fc09b372b1a5deaf73661339ba39a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minitest-macos-notification (0.0.3)
4
+ minitest-macos-notification (0.0.4)
5
5
  minitest (~> 5.0)
6
6
  minitest-reporters (~> 1.3)
7
7
  os (~> 1.0)
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2018 Stuart
3
+ Copyright (c) 2018 Stuart Chinery
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
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
- [![Build Status](https://travis-ci.org/sleepingstu/minitest-macos-notification.svg?branch=master)](https://travis-ci.org/sleepingstu/minitest-macos-notification)
6
+ [![Build Status](https://travis-ci.org/schinery/minitest-macos-notification.svg?branch=master)](https://travis-ci.org/schinery/minitest-macos-notification)
7
7
 
8
8
  ## Installation
9
9
 
@@ -54,11 +54,11 @@ Minitest::Reporters.use!(
54
54
 
55
55
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
56
56
 
57
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
57
+ To install this gem onto your local machine, run `bundle exec rake install`.
58
58
 
59
59
  ## Contributing
60
60
 
61
- Bug reports and pull requests are welcome on GitHub at https://github.com/sleepingstu/minitest-macos-notification. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
61
+ Bug reports and pull requests are welcome on GitHub at https://github.com/schinery/minitest-macos-notification. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
62
62
 
63
63
  ## License
64
64
 
@@ -66,7 +66,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
66
66
 
67
67
  ## Code of Conduct
68
68
 
69
- Everyone interacting in the `Minitest::MacosNotification` project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/sleepingstu/minitest-macos-notification/blob/master/CODE_OF_CONDUCT.md).
69
+ Everyone interacting in the `Minitest::MacosNotification` project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/schinery/minitest-macos-notification/blob/master/CODE_OF_CONDUCT.md).
70
70
 
71
71
  ## TODOs
72
72
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.4
1
+ 0.0.5
@@ -2,6 +2,7 @@
2
2
 
3
3
  module Minitest
4
4
  module MacosNotification
5
- VERSION = File.read("VERSION").split("\n").first
5
+ version_file = File.join(File.dirname(__FILE__), "../../../VERSION")
6
+ VERSION = File.read(version_file).split("\n").first
6
7
  end
7
8
  end
@@ -7,7 +7,7 @@ require "minitest/macos_notification/version"
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = "minitest-macos-notification"
9
9
  spec.version = Minitest::MacosNotification::VERSION
10
- spec.authors = ["Stuart"]
10
+ spec.authors = ["Stuart Chinery"]
11
11
  spec.email = ["stuart.chinery@gmail.com"]
12
12
 
13
13
  spec.summary = "Simple macOS notification reporter for Minitest Reporters"
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.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
- - Stuart
7
+ - Stuart Chinery
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-07 00:00:00.000000000 Z
11
+ date: 2019-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest