0.0
No commit activity in last 3 years
No release in over 3 years
Opal bindings for the Pusher JS API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.9
~> 10.0

Runtime

~> 0.7
 Project Readme

Opal-Pusher

Opal-Pusher is a set of Ruby bindings for the Pusher API.

Installation

Add this line to your application's Gemfile:

gem 'opal-pusher'

And then execute:

$ bundle

Or install it yourself as:

$ gem install opal-pusher

Usage

You'll need to pass your Pusher API key into your front-end app somehow. In Rails apps, I usually use the gon gem for this:

gon.push pusher_api_key: ENV.fetch('PUSHER_API_KEY')

Once you have that accessible from the front-end, you can open up a Pusher connection in your Opal app like this:

require 'pusher' # Load this library

pusher = Pusher.new(`gon.pusher_api_key`)
channel = pusher.subscribe("my-pusher-channel")
channel.bind "my-pusher-event" do |data|
  puts data # data is a hash
end

I've been using this to set the attributes of models in Clearwater apps:

foo_channel.bind 'update' do |data|
  FooRepository[data[:id]].set_attributes data
  App.render # Rerender the app with new data
end

Contributing

  1. Fork it ( https://github.com/jgaskins/opal-pusher/fork )
  2. Branch it (git checkout -b brand-new-thing)
  3. Hack it
  4. Save it
  5. Commit it (git commit -am 'Do the thing')
  6. Push it (git push origin brand-new-thing)
  7. Pull-request it