Skip to content

0.8.0

Latest
Compare
Choose a tag to compare
@palkan palkan released this 09 Mar 02:27
· 6 commits to master since this release

Features

  • Support custom channel registries (to perform channel class lookups).

For example:

# DummyRegistry which always returns a predefined channel class
class DummyRegistry
  def lookup(channel_id)
    DummyChannel
  end
end

LiteCable.channel_registry = DummyRegistry.new

Changes

  • Ruby 2.7+ is required.