1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00
kaminari--kaminari/kaminari-core/spec/fake_gem.rb

21 lines
447 B
Ruby
Raw Normal View History

module Kaminari
module FakeGem
extend ActiveSupport::Concern
module ClassMethods
def inherited(kls)
super
def kls.fake_gem_defined_method; end
end
end
end
end
ActiveSupport.on_load :active_record do
ActiveRecord::Base.send :include, Kaminari::FakeGem
# Simulate a gem providing a subclass of ActiveRecord::Base before the Railtie is loaded.
class GemDefinedModel < ActiveRecord::Base
end
end