internetee-registry/config/initializers/reload_api.rb
2015-01-08 14:34:33 +02:00

11 lines
366 B
Ruby

if Rails.env.development?
ActiveSupport::Dependencies.explicitly_unloadable_constants << 'Repp::API'
api_files = Dir[Rails.root.join('app', 'api', '**', '*.rb')]
api_reloader = ActiveSupport::FileUpdateChecker.new(api_files) do
Rails.application.reload_routes!
end
ActionDispatch::Callbacks.to_prepare do
api_reloader.execute_if_updated
end
end