mirror of
https://github.com/ditkrg/rabbit_carrots.git
synced 2026-01-22 13:56:41 +00:00
14 lines
268 B
Ruby
14 lines
268 B
Ruby
# lib/railtie.rb
|
|
require 'rabbit_carrots'
|
|
|
|
module RabbitCarrots
|
|
class Railtie < Rails::Railtie
|
|
railtie_name :rabbit_carrots
|
|
|
|
rake_tasks do
|
|
path = File.expand_path(__dir__)
|
|
Dir.glob("#{path}/tasks/**/*.rake").each { |f| load f }
|
|
end
|
|
end
|
|
end
|