diff --git a/lib/tasks/grape.rake b/lib/tasks/grape.rake
index 9980e0b7984b6aee4a9e63544810839bd2b66498..ea2698da60670c75f8e38309795f23588677b834 100644
--- a/lib/tasks/grape.rake
+++ b/lib/tasks/grape.rake
@@ -2,7 +2,11 @@ namespace :grape do
   desc 'Print compiled grape routes'
   task routes: :environment do
     API::API.routes.each do |route|
-      puts route
+      puts "#{route.options[:method]} #{route.path} - #{route_description(route.options)}"
     end
   end
+
+  def route_description(options)
+    options[:settings][:description][:description] if options[:settings][:description]
+  end
 end