module Ably::Realtime

Realtime provides the top-level class to be instanced for the Ably Realtime library

@example

client = Ably::Realtime.new("xxxxx")
channel = client.channel("test")
channel.subscribe do |message|
  message[:name] #=> "greeting"
end
channel.publish "greeting", "data"