Created
November 8, 2019 09:41
-
-
Save kieetnvt/a69ba66aa07a3a53d2d6298e891f537e to your computer and use it in GitHub Desktop.
Get Unused Routes of Large Rails App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rails.application.eager_load! | |
unused_routes = {} | |
# Iterating over all non-empty routes from RouteSet | |
Rails.application.routes.routes.map(&:requirements).reject(&:empty?).each do |route| | |
name = route[:controller].camelcase | |
next if name.start_with?("Rails") | |
controller = "#{name}Controller" | |
if Object.const_defined?(controller) && !controller.constantize.new.respond_to?(route[:action]) | |
# Get route for which associated action is not present and add it in final results | |
unless Dir.glob(Rails.root.join("app", "views", name.downcase, "#{route[:action]}.*")).any? | |
unused_routes[controller] = [] if unused_routes[controller].nil? | |
unused_routes[controller] << route[:action] | |
end | |
end | |
end | |
puts unused_routes | |
# {"UsersController"=>["edit", "update", "update", "destroy"]} | |
# using: $> ruby get-unused-routes.rb in project source folder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment