module PubSubHubbub

Overview

Client and server for PubSubHubbub protocol

NOTE http://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html

Defined in:

pubsubhubbub.cr
pubsubhubbub/configuration.cr
pubsubhubbub/feed.cr
pubsubhubbub/handlers/error_handler.cr
pubsubhubbub/handlers/subscriber_handler.cr
pubsubhubbub/subscriber.cr

Constant Summary

Log = ::Log.for("pubsubhubbub")
VERSION = "0.1.5"

Class Method Summary

Class Method Detail

def self.config #

[View source]
def self.configure(&) : Nil #

Customize default settings using block.

PubSubHubbub.configure do |config|
  config.callback = "https://example.com/some/path"
end

[View source]