require_relative '../lib/songkick_queue' SongkickQueue.configure do |config| config.host = 'localhost' config.logger = Logger.new(STDOUT) end 3.times do SongkickQueue.publish('notifications-service.tweets', { text: 'Hello world', user_id: 57237722 }) end