Sha256: f856d88b5b323b5a428e5269b62adb5e4dbc6946ea7f2639038c5c875318034c

Contents?: true

Size: 1.64 KB

Versions: 3

Compression:

Stored size: 1.64 KB

Contents

# encoding: utf-8
require 'rails_best_practices/reviews/review'

module RailsBestPractices
  module Reviews
    # Review config/routes file to make sure not use default route that rails generated.
    #
    # See the best practice details here http://rails-bestpractices.com/posts/12-not-use-default-route-if-you-use-restful-design
    #
    # Implementation:
    #
    # Review process:
    #   check all method command_call or command node to see if it is the same as rails default route.
    #
    #     map.connect ':controller/:action/:id'
    #     map.connect ':controller/:action/:id.:format'
    #
    #   or
    #
    #     match ':controller(/:action(/:id(.:format)))'
    class NotUseDefaultRouteReview < Review
      def url
        "http://rails-bestpractices.com/posts/12-not-use-default-route-if-you-use-restful-design"
      end

      def interesting_nodes
        [:command_call, :command]
      end

      def interesting_files
        ROUTE_FILES
      end

      # check all command call nodes, compare with rails2 default route
      def start_command_call(node)
        if "map" == node.subject.to_s && "connect" == node.message.to_s &&
          (":controller/:action/:id" == node.arguments.all[0].to_s ||
           ":controller/:action/:id.:format" == node.arguments.all[0].to_s)
          add_error "not use default route"
        end
      end

      # check all command nodes, compare with rails3 default route
      def start_command(node)
        if "match" == node.message.to_s &&
          ":controller(/:action(/:id(.:format)))" == node.arguments.all[0].to_s
          add_error "not use default route"
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails_best_practices-1.3.0 lib/rails_best_practices/reviews/not_use_default_route_review.rb
rails_best_practices-1.2.0 lib/rails_best_practices/reviews/not_use_default_route_review.rb
rails_best_practices-1.1.0 lib/rails_best_practices/reviews/not_use_default_route_review.rb