路由计数器当您想知道您的路线被使用了多少时。如果您想知道它们是否被使用,这将特别有用

安装

将此行添加到应用程序的Gemfile中:

gem 'route_counter'

然后执行:

$ bundle

或者自己安装:

$ gem install route_counter

在初始化程序中启用记录并插入中间件:

RouteCounter.config.enabled = true

Rails.application.config.middleware.use RouteCounter::Middleware

添加到Rakefile

require 'route_counter/tasks'

用法

检查使用了什么:

$ bundle exec rake routes:count:local

所有这些都存储在您的系统中。