Skip to content

pubnub/ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

55cbf3d · Jan 28, 2025
May 22, 2020
Jan 7, 2025
Nov 9, 2021
Oct 16, 2023
Jan 28, 2025
Jun 25, 2018
Jan 28, 2025
Jan 28, 2025
Feb 8, 2016
Nov 9, 2021
Jan 28, 2025
Jan 29, 2024
Oct 16, 2023
Sep 3, 2015
Jan 28, 2025
Jan 7, 2025
Jan 28, 2025
Nov 3, 2023
Apr 8, 2019
Nov 21, 2023
Dec 23, 2014
Jan 28, 2025
May 18, 2016
Oct 9, 2024

Repository files navigation

PubNub Ruby SDK

Tests Status

This is the official PubNub Ruby SDK repository.

PubNub takes care of the infrastructure and APIs needed for the realtime communication layer of your application. Work on your app's logic and let PubNub handle sending and receiving data across the world in less than 100ms.

Get keys

You will need the publish and subscribe keys to authenticate your app. Get your keys from the Admin Portal.

Configure PubNub

  1. Integrate PubNub into your project using RubyGems:

    gem install pubnub
  2. Create a new App.rb file and add the following code.

    require 'pubnub'
    
    pubnub = Pubnub.new(
        subscribe_key: :mySubscribeKey,
        publish_key: :myPublishKey,
        uuid: :myUniqueUUID
    )

    This is the minimum configuration you need to send and receive messages with PubNub.

Add event listeners

callback = Pubnub::SubscribeCallback.new(
    message: ->(envelope) {
        puts "MESSAGE: #{puts envelope.result[:data][:message]['msg']}"
    },
    presence: ->(envelope) {
        puts "PRESENCE: #{envelope.result[:data]}"
    }
)
pubnub.add_listener(callback: callback)

Publish and subscribe

pubnub.subscribe(
    channels: ['my_channel'],
    with_presence: true
)

pubnub.publish(
    channel: 'my_channel',
    message: { text: 'Hello world' }
) do |envelope|
    puts envelope.status
end

Documentation

API reference for Ruby

Support

If you need help or have a general question, contact support@pubnub.com.