Простое расширение Railtie Active Record - PullRequest
0 голосов
/ 23 ноября 2010

Я создаю гем 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 моделей. Пожалуйста помоги! Я чрезвычайно разочарован этим, казалось бы, тривиальным кодом! Спасибо!

Ответы [ 2 ]

4 голосов
/ 23 ноября 2010

Вы определяете self.include (4-я строка вниз), когда правильный метод self.included.

3 голосов
/ 23 ноября 2010

Вы можете упростить код, используя extend напрямую:

# attached.rb
module Attached
  require 'attached/railtie' if defined?(Rails)
  def acts_as_fail
  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 :extend, Attached
      end
    end
  end
end

Это хорошее чтение: http://yehudakatz.com/2009/11/12/better-ruby-idioms/

...