rb-kqueue 0.2.2 → 0.2.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 +4 -4
- data/lib/rb-kqueue.rb +1 -1
- data/rb-kqueue.gemspec +3 -2
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 109b63f3a43a320a112b2cbdd5afb133b333f682
|
4
|
+
data.tar.gz: 7e4db1eb3543ad54ca81b676b50e32528d61cb79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90e30eb4903e6aa6a3c23663488cd850aecce92f386124aaaf3af0eeaf2aa0e4996954471a2493eb6933bd0e1e631489e022f74ee9c6e0b0ed634d322fd79fda
|
7
|
+
data.tar.gz: f0d6f5cdb9753e05119297c0e87b7999f2bd7457a1d2cce9a7ff2074a2d5bb9115a007d1a0b4a5c7d4ce6c696f244f53912e8696a542dba1ed38041a5e1c7a84
|
data/lib/rb-kqueue.rb
CHANGED
@@ -13,7 +13,7 @@ require 'rb-kqueue/queue'
|
|
13
13
|
# * {Watcher} -- A watcher for a single sort of event
|
14
14
|
# * {Event} -- A notification that an event has occurred
|
15
15
|
module KQueue
|
16
|
-
VERSION = [0, 2,
|
16
|
+
VERSION = [0, 2, 3]
|
17
17
|
|
18
18
|
# Raise an exception for a native kqueue error.
|
19
19
|
#
|
data/rb-kqueue.gemspec
CHANGED
@@ -5,13 +5,14 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
7
7
|
gem.name = %q{rb-kqueue}
|
8
|
-
gem.version = "0.2.
|
8
|
+
gem.version = "0.2.3"
|
9
9
|
|
10
10
|
gem.authors = ["Mathieu Arnold", "Nathan Weizenbaum"]
|
11
11
|
gem.email = %q{mat@mat.cc nex342@gmail.com}
|
12
|
-
gem.date = %q{2014-
|
12
|
+
gem.date = %q{2014-06-03}
|
13
13
|
gem.description = %q{A Ruby wrapper for BSD's kqueue, using FFI}
|
14
14
|
gem.extra_rdoc_files = %w(README.md)
|
15
|
+
gem.licenses = ['MIT']
|
15
16
|
|
16
17
|
gem.files = `git ls-files`.split(/\n/)
|
17
18
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rb-kqueue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mathieu Arnold
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-06-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ffi
|
@@ -67,7 +67,8 @@ files:
|
|
67
67
|
- lib/rb-kqueue/watcher/timer.rb
|
68
68
|
- rb-kqueue.gemspec
|
69
69
|
homepage: http://github.com/mat813/rb-kqueue
|
70
|
-
licenses:
|
70
|
+
licenses:
|
71
|
+
- MIT
|
71
72
|
metadata: {}
|
72
73
|
post_install_message:
|
73
74
|
rdoc_options:
|