Created
April 13, 2012 01:07
-
-
Save drale2k/2372521 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Error: <class:Video>': undefined method `hello' for Zencodera:Module (NoMethodError) | |
# lib/zencodera.rb | |
module Zencodera | |
def hello | |
puts "Hello..." | |
end | |
end | |
# models/video.rb | |
class Video < ActiveRecord::Base | |
include Zencodera | |
Zencodera.hello | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment