We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I create a class
class Model def push emit(:pushed) end end
But when running, it says there is no method :emit. Please explain more here.
The text was updated successfully, but these errors were encountered:
Did you
require 'frappuccino'
Sorry, something went wrong.
Yes. I've required the gem. The error stay the same.
U can't directly access it use this c = Model.new stream = Frappuccino::Stream.new(c) after that it won't say.
c = Model.new
stream = Frappuccino::Stream.new(c)
No branches or pull requests
I create a class
But when running, it says there is no method :emit.
Please explain more here.
The text was updated successfully, but these errors were encountered: