From 85b9bc0d41cc620d701de8e82af7e78ab379465b Mon Sep 17 00:00:00 2001 From: Kurt Werle Date: Sun, 16 Jul 2017 15:29:14 -0700 Subject: [PATCH] Just a nod to summary. (#96) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index dab8271..8895418 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ class PetsController < ActionController::Base swagger_path '/pets/{id}' do operation :get do + key :summary, 'Find Pet by ID' key :description, 'Returns a single pet if the user has access' key :operationId, 'findPetById' key :tags, [ @@ -72,6 +73,7 @@ class PetsController < ActionController::Base end swagger_path '/pets' do operation :get do + key :summary, 'All Pets' key :description, 'Returns all pets from the system that the user has access to' key :operationId, 'findPets' key :produces, [