Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02:00

19 lines
292 B
Ruby

require 'rails'
require 'acts_as_sorting'
p "Railtie loaded"
begin
module ActsAsSorting
class Railtie < Rails::Railtie
config.to_prepare do
p "hook sorting added"
ActiveRecord::Base.send(:extend, ActsAsSorting::Hook)
end
end
end
rescue
p $!, $!.message
raise $!
end