dripdrop 0.9.8 → 0.9.9
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +27 -0
- data/VERSION +1 -1
- data/dripdrop.gemspec +57 -54
- metadata +37 -10
data/.gitignore
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
## MAC OS
|
2
|
+
.DS_Store
|
3
|
+
|
4
|
+
## TEXTMATE
|
5
|
+
*.tmproj
|
6
|
+
tmtags
|
7
|
+
|
8
|
+
## EMACS
|
9
|
+
*~
|
10
|
+
\#*
|
11
|
+
.\#*
|
12
|
+
|
13
|
+
## VIM
|
14
|
+
*.swp
|
15
|
+
*.swo
|
16
|
+
*.swn
|
17
|
+
|
18
|
+
## PROJECT::GENERAL
|
19
|
+
coverage
|
20
|
+
rdoc
|
21
|
+
doc
|
22
|
+
pkg
|
23
|
+
|
24
|
+
#RBX
|
25
|
+
*.rbc
|
26
|
+
|
27
|
+
## PROJECT::SPECIFIC
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.9
|
data/dripdrop.gemspec
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{dripdrop}
|
8
|
-
s.version = "0.9.
|
8
|
+
s.version = "0.9.9"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Andrew Cholakian"]
|
@@ -14,70 +14,73 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.email = %q{andrew@andrewvc.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
17
|
+
"README.md"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.md",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"doc_img/topology.png",
|
27
|
+
"dripdrop.gemspec",
|
28
|
+
"example/agent_test.rb",
|
29
|
+
"example/combined.rb",
|
30
|
+
"example/complex/README",
|
31
|
+
"example/complex/client.rb",
|
32
|
+
"example/complex/server.rb",
|
33
|
+
"example/complex/service.rb",
|
34
|
+
"example/complex/websocket.rb",
|
35
|
+
"example/http.rb",
|
36
|
+
"example/pubsub.rb",
|
37
|
+
"example/pushpull.rb",
|
38
|
+
"example/subclass.rb",
|
39
|
+
"example/xreq_xrep.rb",
|
40
|
+
"js/dripdrop.html",
|
41
|
+
"js/dripdrop.js",
|
42
|
+
"js/qunit.css",
|
43
|
+
"js/qunit.js",
|
44
|
+
"lib/dripdrop.rb",
|
45
|
+
"lib/dripdrop/agent.rb",
|
46
|
+
"lib/dripdrop/handlers/base.rb",
|
47
|
+
"lib/dripdrop/handlers/http.rb",
|
48
|
+
"lib/dripdrop/handlers/websockets.rb",
|
49
|
+
"lib/dripdrop/handlers/zeromq.rb",
|
50
|
+
"lib/dripdrop/message.rb",
|
51
|
+
"lib/dripdrop/node.rb",
|
52
|
+
"lib/dripdrop/node/nodelet.rb",
|
53
|
+
"spec/gimite-websocket.rb",
|
54
|
+
"spec/message_spec.rb",
|
55
|
+
"spec/node/http_spec.rb",
|
56
|
+
"spec/node/nodelet_spec.rb",
|
57
|
+
"spec/node/routing_spec.rb",
|
58
|
+
"spec/node/websocket_spec.rb",
|
59
|
+
"spec/node/zmq_pushpull_spec.rb",
|
60
|
+
"spec/node/zmq_xrepxreq_spec.rb",
|
61
|
+
"spec/node_spec.rb",
|
62
|
+
"spec/spec_helper.rb"
|
62
63
|
]
|
63
64
|
s.homepage = %q{http://github.com/andrewvc/dripdrop}
|
65
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
64
66
|
s.require_paths = ["lib"]
|
65
|
-
s.rubygems_version = %q{1.
|
67
|
+
s.rubygems_version = %q{1.3.7}
|
66
68
|
s.summary = %q{Evented framework for ZeroMQ and EventMachine Apps.}
|
67
69
|
s.test_files = [
|
68
|
-
"spec/gimite-websocket.rb",
|
69
|
-
"spec/message_spec.rb",
|
70
|
-
"spec/node/http_spec.rb",
|
71
|
-
"spec/node/nodelet_spec.rb",
|
72
|
-
"spec/node/routing_spec.rb",
|
73
|
-
"spec/node/websocket_spec.rb",
|
74
|
-
"spec/node/zmq_pushpull_spec.rb",
|
75
|
-
"spec/node/zmq_xrepxreq_spec.rb",
|
76
70
|
"spec/node_spec.rb",
|
77
|
-
|
71
|
+
"spec/spec_helper.rb",
|
72
|
+
"spec/gimite-websocket.rb",
|
73
|
+
"spec/message_spec.rb",
|
74
|
+
"spec/node/nodelet_spec.rb",
|
75
|
+
"spec/node/zmq_pushpull_spec.rb",
|
76
|
+
"spec/node/zmq_xrepxreq_spec.rb",
|
77
|
+
"spec/node/routing_spec.rb",
|
78
|
+
"spec/node/websocket_spec.rb",
|
79
|
+
"spec/node/http_spec.rb"
|
78
80
|
]
|
79
81
|
|
80
82
|
if s.respond_to? :specification_version then
|
83
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
81
84
|
s.specification_version = 3
|
82
85
|
|
83
86
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dripdrop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 9
|
8
|
+
- 9
|
9
|
+
version: 0.9.9
|
6
10
|
platform: ruby
|
7
11
|
authors:
|
8
12
|
- Andrew Cholakian
|
@@ -21,6 +25,10 @@ dependencies:
|
|
21
25
|
requirements:
|
22
26
|
- - ">="
|
23
27
|
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 7
|
31
|
+
- 1
|
24
32
|
version: 0.7.1
|
25
33
|
type: :runtime
|
26
34
|
version_requirements: *id001
|
@@ -32,6 +40,10 @@ dependencies:
|
|
32
40
|
requirements:
|
33
41
|
- - ">="
|
34
42
|
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 0
|
45
|
+
- 12
|
46
|
+
- 10
|
35
47
|
version: 0.12.10
|
36
48
|
type: :runtime
|
37
49
|
version_requirements: *id002
|
@@ -43,6 +55,8 @@ dependencies:
|
|
43
55
|
requirements:
|
44
56
|
- - ">="
|
45
57
|
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
46
60
|
version: "0"
|
47
61
|
type: :runtime
|
48
62
|
version_requirements: *id003
|
@@ -54,6 +68,8 @@ dependencies:
|
|
54
68
|
requirements:
|
55
69
|
- - ">="
|
56
70
|
- !ruby/object:Gem::Version
|
71
|
+
segments:
|
72
|
+
- 0
|
57
73
|
version: "0"
|
58
74
|
type: :runtime
|
59
75
|
version_requirements: *id004
|
@@ -65,6 +81,10 @@ dependencies:
|
|
65
81
|
requirements:
|
66
82
|
- - ">="
|
67
83
|
- !ruby/object:Gem::Version
|
84
|
+
segments:
|
85
|
+
- 0
|
86
|
+
- 1
|
87
|
+
- 2
|
68
88
|
version: 0.1.2
|
69
89
|
type: :runtime
|
70
90
|
version_requirements: *id005
|
@@ -76,6 +96,8 @@ dependencies:
|
|
76
96
|
requirements:
|
77
97
|
- - ">="
|
78
98
|
- !ruby/object:Gem::Version
|
99
|
+
segments:
|
100
|
+
- 0
|
79
101
|
version: "0"
|
80
102
|
type: :runtime
|
81
103
|
version_requirements: *id006
|
@@ -90,6 +112,7 @@ extra_rdoc_files:
|
|
90
112
|
- README.md
|
91
113
|
files:
|
92
114
|
- .document
|
115
|
+
- .gitignore
|
93
116
|
- LICENSE
|
94
117
|
- README.md
|
95
118
|
- Rakefile
|
@@ -136,8 +159,8 @@ homepage: http://github.com/andrewvc/dripdrop
|
|
136
159
|
licenses: []
|
137
160
|
|
138
161
|
post_install_message:
|
139
|
-
rdoc_options:
|
140
|
-
|
162
|
+
rdoc_options:
|
163
|
+
- --charset=UTF-8
|
141
164
|
require_paths:
|
142
165
|
- lib
|
143
166
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -145,28 +168,32 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
145
168
|
requirements:
|
146
169
|
- - ">="
|
147
170
|
- !ruby/object:Gem::Version
|
171
|
+
segments:
|
172
|
+
- 0
|
148
173
|
version: "0"
|
149
174
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
150
175
|
none: false
|
151
176
|
requirements:
|
152
177
|
- - ">="
|
153
178
|
- !ruby/object:Gem::Version
|
179
|
+
segments:
|
180
|
+
- 0
|
154
181
|
version: "0"
|
155
182
|
requirements: []
|
156
183
|
|
157
184
|
rubyforge_project:
|
158
|
-
rubygems_version: 1.
|
185
|
+
rubygems_version: 1.3.7
|
159
186
|
signing_key:
|
160
187
|
specification_version: 3
|
161
188
|
summary: Evented framework for ZeroMQ and EventMachine Apps.
|
162
189
|
test_files:
|
190
|
+
- spec/node_spec.rb
|
191
|
+
- spec/spec_helper.rb
|
163
192
|
- spec/gimite-websocket.rb
|
164
193
|
- spec/message_spec.rb
|
165
|
-
- spec/node/http_spec.rb
|
166
194
|
- spec/node/nodelet_spec.rb
|
167
|
-
- spec/node/routing_spec.rb
|
168
|
-
- spec/node/websocket_spec.rb
|
169
195
|
- spec/node/zmq_pushpull_spec.rb
|
170
196
|
- spec/node/zmq_xrepxreq_spec.rb
|
171
|
-
- spec/
|
172
|
-
- spec/
|
197
|
+
- spec/node/routing_spec.rb
|
198
|
+
- spec/node/websocket_spec.rb
|
199
|
+
- spec/node/http_spec.rb
|