Skip to content

Instantly share code, notes, and snippets.

View vishaldeepak's full-sized avatar

VISHAL DEEPAK vishaldeepak

View GitHub Profile
@strzibny
strzibny / unused_routes.rb
Created May 5, 2016 15:21
Find unused routes in Rails
#!/usr/bin/env ruby
# Extracted from traceroute gem + checking the presence of views as well
require_relative './config/environment.rb'
class Traceroute
def initialize(app)
@app = app
end