wisper

    0熱度

    1回答

    我想用Rails 4/AR使用Wisper並遇到問題。 比方說,我有Email和Creep AR模型,我想,當接收到一個答覆Creep知道(Creep不一定是發送者...) 所以我做的: email = Email.create! params creep = Creep.last email.subscribe(creep, on: :reply_received, with: :succe

    7熱度

    1回答

    我在app/listeners目錄中有wisper監聽器。 我也有/config/initializers/wisper.rb module Wisper def self.setup configure do |config| config.broadcaster(:default, Broadcasters::LoggerBroadcaster.new(Rail

    0熱度

    1回答

    我使用Rails Wisper gem,並且只在特定測試(我測試電子郵件發送的地方)期間執行監聽器回調(發送電子郵件)。在其他測試中,即使在生產中我的回調會發送郵件,我也不想發送電子郵件。 Wisper有可能嗎? 出版商(應用程序/模型/ order.rb) class Order < ActiveRecord::Base include Wisper::Publisher

    0熱度

    1回答

    我想在我的ApplicationController中註冊一個包含current_user的全局偵聽器。最後我想這一點: class ApplicationController < ActionController::Base before_action do @listener = MyListener.new(current_user) Wisper.clear

    0熱度

    1回答

    我正在考慮將Wisper實現到現有的Rails應用程序中......我一直在將示例作爲POC運行,並且我沒有看到在全局設置偵聽器時將事件設置爲異步的方法。 這不可能嗎?

    1熱度

    1回答

    我想弄清楚如何使用wisper Devise。 當新的用戶帳戶註冊時,我想爲該用戶創建一些示例數據。 所以在我的用戶模型我會: include Wisper::Publisher after_create :notify def notify publish(:user_created, self) end 和我的聽衆會是這樣的: class SampleDataCreator

    1熱度

    1回答

    使用wisper gem優於rails-observers有沒有什麼好處? 它們看起來都很相似,但智慧似乎更受社區(基於GH星,提交和發佈)的支持。他們之間有什麼重大差異?