dripdrop 0.9.8 → 0.9.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/.gitignore +27 -0
  2. data/VERSION +1 -1
  3. data/dripdrop.gemspec +57 -54
  4. 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.8
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 'rake gemspec'
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"
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
- "README.md"
17
+ "README.md"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
- "LICENSE",
22
- "README.md",
23
- "Rakefile",
24
- "VERSION",
25
- "doc_img/topology.png",
26
- "dripdrop.gemspec",
27
- "example/agent_test.rb",
28
- "example/combined.rb",
29
- "example/complex/README",
30
- "example/complex/client.rb",
31
- "example/complex/server.rb",
32
- "example/complex/service.rb",
33
- "example/complex/websocket.rb",
34
- "example/http.rb",
35
- "example/pubsub.rb",
36
- "example/pushpull.rb",
37
- "example/subclass.rb",
38
- "example/xreq_xrep.rb",
39
- "js/dripdrop.html",
40
- "js/dripdrop.js",
41
- "js/qunit.css",
42
- "js/qunit.js",
43
- "lib/dripdrop.rb",
44
- "lib/dripdrop/agent.rb",
45
- "lib/dripdrop/handlers/base.rb",
46
- "lib/dripdrop/handlers/http.rb",
47
- "lib/dripdrop/handlers/websockets.rb",
48
- "lib/dripdrop/handlers/zeromq.rb",
49
- "lib/dripdrop/message.rb",
50
- "lib/dripdrop/node.rb",
51
- "lib/dripdrop/node/nodelet.rb",
52
- "spec/gimite-websocket.rb",
53
- "spec/message_spec.rb",
54
- "spec/node/http_spec.rb",
55
- "spec/node/nodelet_spec.rb",
56
- "spec/node/routing_spec.rb",
57
- "spec/node/websocket_spec.rb",
58
- "spec/node/zmq_pushpull_spec.rb",
59
- "spec/node/zmq_xrepxreq_spec.rb",
60
- "spec/node_spec.rb",
61
- "spec/spec_helper.rb"
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.5.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
- "spec/spec_helper.rb"
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
- version: 0.9.8
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.5.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/node_spec.rb
172
- - spec/spec_helper.rb
197
+ - spec/node/routing_spec.rb
198
+ - spec/node/websocket_spec.rb
199
+ - spec/node/http_spec.rb