libnotify 0.9.3 → 0.9.4
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/.travis.yml +4 -6
- data/LICENSE +1 -0
- data/README.md +1 -1
- data/lib/libnotify.rb +2 -3
- data/lib/libnotify/version.rb +1 -1
- data/libnotify.gemspec +2 -2
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4051f92b0eaaf083bbaa7d88d7b8c885fa0727f1
|
4
|
+
data.tar.gz: d28d1b76ef15a95f567795d85c52c58ee055c321
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a09b89cadb2386d2f4eef476d156deb312129cc890b782ce5ebefed972032545d9d71479a0654857b08984b87cdf1e4e37fda0dc6192c444f43c72a82c138faf
|
7
|
+
data.tar.gz: a89ae1f7a5083f38ac2e37325eb174e1f2b0f0f7508adf9da5daa7bd7a5352f6b7c966b1e99d92838948b0a856516ac5cd4b55b685a89051209f9395ee38b717
|
data/.travis.yml
CHANGED
@@ -3,16 +3,14 @@ rvm:
|
|
3
3
|
- 1.9.3
|
4
4
|
- 2.0
|
5
5
|
- 2.1
|
6
|
-
- 2.2.
|
7
|
-
- 2.3.
|
8
|
-
- 2.4.
|
6
|
+
- 2.2.9
|
7
|
+
- 2.3.5
|
8
|
+
- 2.4.2
|
9
|
+
- jruby-9.1.15.0
|
9
10
|
- ruby-head
|
10
|
-
- jruby
|
11
|
-
- jruby-head
|
12
11
|
matrix:
|
13
12
|
allow_failures:
|
14
13
|
- rvm: ruby-head
|
15
|
-
- rvm: jruby-head
|
16
14
|
fast_finish: true
|
17
15
|
before_install:
|
18
16
|
- "sudo apt-get install libnotify4"
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -119,7 +119,7 @@ https://github.com/splattael/libnotify/issues/21#issuecomment-19114127
|
|
119
119
|
|
120
120
|
## Authors
|
121
121
|
|
122
|
-
* Peter
|
122
|
+
* Peter Leitzen (https://github.com/splattael)
|
123
123
|
|
124
124
|
## [Contributors](https://github.com/splattael/libnotify/graphs/contributors)
|
125
125
|
|
data/lib/libnotify.rb
CHANGED
@@ -7,7 +7,6 @@ require 'libnotify/api'
|
|
7
7
|
#
|
8
8
|
# @see README.md
|
9
9
|
# @see Libnotify.new
|
10
|
-
# @author Peter Suschlik
|
11
10
|
module Libnotify
|
12
11
|
# Creates a notification.
|
13
12
|
#
|
@@ -56,14 +55,14 @@ module Libnotify
|
|
56
55
|
# @yieldparam [API] notify the notification object
|
57
56
|
#
|
58
57
|
# @return [API] the notification object
|
59
|
-
def self.new(options={}, &block)
|
58
|
+
def self.new(options = {}, &block)
|
60
59
|
API.new(options, &block)
|
61
60
|
end
|
62
61
|
|
63
62
|
# Shows a notification. It takes the same +options+ as Libnotify.new.
|
64
63
|
#
|
65
64
|
# @see Libnotify.new
|
66
|
-
def self.show(options={}, &block)
|
65
|
+
def self.show(options = {}, &block)
|
67
66
|
API.show(options, &block)
|
68
67
|
end
|
69
68
|
|
data/lib/libnotify/version.rb
CHANGED
data/libnotify.gemspec
CHANGED
@@ -5,7 +5,7 @@ require "libnotify/version"
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = "libnotify"
|
7
7
|
s.version = Libnotify::VERSION
|
8
|
-
s.authors = ["Peter
|
8
|
+
s.authors = ["Peter Leitzen"]
|
9
9
|
s.email = ["peter-libnotify@suschlik.de"]
|
10
10
|
s.homepage = "http://rubygems.org/gems/libnotify"
|
11
11
|
s.summary = %q{Ruby bindings for libnotify using FFI}
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
|
19
19
|
s.add_runtime_dependency 'ffi', '>= 1.0.11'
|
20
20
|
|
21
|
-
s.add_development_dependency 'yard', '~> 0.
|
21
|
+
s.add_development_dependency 'yard', '~> 0.9.11'
|
22
22
|
s.add_development_dependency 'minitest', '~> 4.7.4'
|
23
23
|
s.add_development_dependency 'minitest-libnotify', '~> 0.2.2'
|
24
24
|
s.add_development_dependency 'simplecov'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libnotify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Peter
|
7
|
+
- Peter Leitzen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.9.11
|
34
34
|
type: :development
|
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: 0.
|
40
|
+
version: 0.9.11
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: minitest
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -137,9 +137,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
137
|
version: '0'
|
138
138
|
requirements: []
|
139
139
|
rubyforge_project:
|
140
|
-
rubygems_version: 2.
|
140
|
+
rubygems_version: 2.6.13
|
141
141
|
signing_key:
|
142
142
|
specification_version: 4
|
143
143
|
summary: Ruby bindings for libnotify using FFI
|
144
144
|
test_files: []
|
145
|
-
has_rdoc:
|