Class: FayeRails::RackAdapter
- Inherits:
-
Faye::RackAdapter
- Object
- Faye::RackAdapter
- FayeRails::RackAdapter
- Defined in:
- lib/faye-rails/rack_adapter.rb
Defined Under Namespace
Classes: DebugMessagesExtension, RoutingExtension
Instance Attribute Summary (collapse)
-
- (Object) endpoint
readonly
Returns the value of attribute endpoint.
-
- (Object) server
readonly
Returns the value of attribute server.
Instance Method Summary (collapse)
-
- (Object) debug_messages
Adds a very simple extension to the server causing it to log all messages in and out to Rails.logger.debug.
-
- (RackAdapter) initialize(app = nil, options = nil)
constructor
A new instance of RackAdapter.
- - (Object) listen(port, ssl_options = nil)
-
- (Object) map(opts)
Rudimentary routing support for channels to controllers.
Constructor Details
- (RackAdapter) initialize(app = nil, options = nil)
A new instance of RackAdapter
8 9 10 11 |
# File 'lib/faye-rails/rack_adapter.rb', line 8 def initialize(app=nil, =nil) super FayeRails.servers << self end |
Instance Attribute Details
- (Object) endpoint (readonly)
Returns the value of attribute endpoint
6 7 8 |
# File 'lib/faye-rails/rack_adapter.rb', line 6 def endpoint @endpoint end |
- (Object) server (readonly)
Returns the value of attribute server
6 7 8 |
# File 'lib/faye-rails/rack_adapter.rb', line 6 def server @server end |
Instance Method Details
- (Object) debug_messages
Adds a very simple extension to the server causing it to log all messages in and out to Rails.logger.debug.
63 64 65 |
# File 'lib/faye-rails/rack_adapter.rb', line 63 def add_extension(DebugMessagesExtension.new) end |
- (Object) listen(port, ssl_options = nil)
13 14 15 16 17 18 19 20 |
# File 'lib/faye-rails/rack_adapter.rb', line 13 def listen(port, = nil) if defined? ::Rails Faye.ensure_reactor_running! super else super end end |
- (Object) map(opts)
Rudimentary routing support for channels to controllers.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/faye-rails/rack_adapter.rb', line 39 def map(opts) if opts.is_a? Hash opts.each do |channel, controller| if channel.is_a? String if File.fnmatch?('/**', channel) routing_extension.map(channel, controller) else raise ArgumentError, "Invalid channel: #{channel}" end elsif channel == :default if controller == :block routing_extension.block_unknown_channels! elsif controller == :drop routing_extension.drop_unknown_channels! elsif controller == :allow routing_extension.allow_unknown_channels! end end end end end |