notifyhub 0.0.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.
- data/CHANGELOG.rdoc +3 -0
- data/LICENSE +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +28 -0
- data/doc/Master.html +396 -0
- data/doc/Notify.html +432 -0
- data/doc/NotifyHub/NotFound.html +134 -0
- data/doc/NotifyHub/Redefining.html +134 -0
- data/doc/NotifyHub.html +1312 -0
- data/doc/NotifySet.html +762 -0
- data/doc/_index.html +145 -0
- data/doc/class_list.html +53 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +338 -0
- data/doc/file.CHANGELOG.html +79 -0
- data/doc/file.README.html +93 -0
- data/doc/file_list.html +58 -0
- data/doc/frames.html +28 -0
- data/doc/index.html +93 -0
- data/doc/js/app.js +214 -0
- data/doc/js/full_list.js +178 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +178 -0
- data/doc/top-level-namespace.html +112 -0
- data/lib/notifyhub.rb +339 -0
- data/test/test_notifyhub.rb +229 -0
- metadata +92 -0
metadata
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: notifyhub
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Tero Isannainen
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-01-19 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ! 'NotifyHub is a callback facility. NotifyHub is used by the informer
|
15
|
+
|
16
|
+
to notify clients about arbitrary events in the informer. NotifyHub
|
17
|
+
|
18
|
+
contains notification sets (NotifySet).
|
19
|
+
|
20
|
+
|
21
|
+
NotifySet is identified by set ID and it can include one or many
|
22
|
+
|
23
|
+
notifications (Notify). Client defines the action performed at
|
24
|
+
|
25
|
+
notification (callback). Informer activates the notification when
|
26
|
+
|
27
|
+
notification events occur.
|
28
|
+
|
29
|
+
|
30
|
+
Notifications can be enabled/disabled on different levels
|
31
|
+
|
32
|
+
(NotifyHub, NotifySet, and Notify).'
|
33
|
+
email: tero.isannainen@gmail.com
|
34
|
+
executables: []
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files:
|
37
|
+
- README.rdoc
|
38
|
+
files:
|
39
|
+
- README.rdoc
|
40
|
+
- CHANGELOG.rdoc
|
41
|
+
- LICENSE
|
42
|
+
- Rakefile
|
43
|
+
- lib/notifyhub.rb
|
44
|
+
- test/test_notifyhub.rb
|
45
|
+
- doc/top-level-namespace.html
|
46
|
+
- doc/js/full_list.js
|
47
|
+
- doc/js/app.js
|
48
|
+
- doc/js/jquery.js
|
49
|
+
- doc/index.html
|
50
|
+
- doc/Master.html
|
51
|
+
- doc/Notify.html
|
52
|
+
- doc/css/common.css
|
53
|
+
- doc/css/full_list.css
|
54
|
+
- doc/css/style.css
|
55
|
+
- doc/file.README.html
|
56
|
+
- doc/method_list.html
|
57
|
+
- doc/file_list.html
|
58
|
+
- doc/NotifyHub/Redefining.html
|
59
|
+
- doc/NotifyHub/NotFound.html
|
60
|
+
- doc/NotifySet.html
|
61
|
+
- doc/NotifyHub.html
|
62
|
+
- doc/class_list.html
|
63
|
+
- doc/_index.html
|
64
|
+
- doc/file.CHANGELOG.html
|
65
|
+
- doc/frames.html
|
66
|
+
homepage:
|
67
|
+
licenses:
|
68
|
+
- Ruby
|
69
|
+
post_install_message: Check README...
|
70
|
+
rdoc_options: []
|
71
|
+
require_paths:
|
72
|
+
- lib
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ! '>='
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 1.9.3
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ! '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
requirements: []
|
86
|
+
rubyforge_project:
|
87
|
+
rubygems_version: 1.8.23
|
88
|
+
signing_key:
|
89
|
+
specification_version: 3
|
90
|
+
summary: NotifyHub is implementation of the Observer pattern using composition.
|
91
|
+
test_files: []
|
92
|
+
has_rdoc:
|