Я создаю гем Rails 3.0.3 и не могу заставить его работать:
# attached.rb
module Attached
require 'attached/railtie' if defined?(Rails)
def self.include(base)
base.send :extend, ClassMethods
end
module ClassMethods
def acts_as_fail
end
end
end
# attached/railtie.rb
require 'attached'
require 'rails'
module Attached
class Railtie < Rails::Railtie
initializer 'attached.initialize' do
ActiveSupport.on_load(:active_record) do
ActiveRecord::Base.send :include, Attached
end
end
end
end
Я получаю undefined local variable or method 'acts_as_fail'
, когда добавляю acts_as_fail
к любой из моих ActiveRecord
моделей. Пожалуйста помоги! Я чрезвычайно разочарован этим, казалось бы, тривиальным кодом! Спасибо!