Skip to content

Instantly share code, notes, and snippets.

@drale2k
Created April 13, 2012 01:07
Show Gist options
  • Save drale2k/2372521 to your computer and use it in GitHub Desktop.
Save drale2k/2372521 to your computer and use it in GitHub Desktop.
# 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