funnel 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/funnel.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  spec = Gem::Specification.new do |s|
2
2
  s.name = 'funnel'
3
- s.version = '0.1.3'
3
+ s.version = '0.1.4'
4
4
  s.date = '2009-12-30'
5
5
  s.summary = 'A realtime resource-centric application framework'
6
6
  s.email = 'dan.simpson@gmail.com'
@@ -33,6 +33,6 @@ spec = Gem::Specification.new do |s|
33
33
  'templates/application/config/config.rb',
34
34
  'templates/application/config/routes.rb',
35
35
  'templates/application/script/run',
36
- 'templates/application/handlers/echo_server.rb'
36
+ 'templates/application/handlers/echo_handler.rb'
37
37
  ]
38
38
  end
@@ -12,6 +12,7 @@ require 'funnel'
12
12
  handlers = Dir.entries(FUNNEL_ROOT + "/handlers").select { |n| not n =~ /^\.+$/ }
13
13
  if handlers
14
14
  handlers.each do |h|
15
+ puts h
15
16
  require FUNNEL_ROOT + "/handlers/#{h}"
16
17
  end
17
18
  end
@@ -1,3 +1,3 @@
1
1
  Funnel::Routing::Routes.draw do |map|
2
- map.default :handler => EchoServer
2
+ map.default :handler => Funnel::Servers::DummyServer
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: funnel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Simpson
@@ -48,7 +48,7 @@ files:
48
48
  - templates/application/config/config.rb
49
49
  - templates/application/config/routes.rb
50
50
  - templates/application/script/run
51
- - templates/application/handlers/echo_server.rb
51
+ - templates/application/handlers/echo_handler.rb
52
52
  has_rdoc: true
53
53
  homepage: http://github.com/dansimpson/funnel
54
54
  licenses: []