我正在使用Grape(在Rails 4上),Swagger和Swagger-UI来记录我的Grape API。现在我想知道如何对Swagger示例中的路由进行分组:http://petstore.swagger.wordnik.com/
这就是我的Swagger-UI目前的样子:
答案 0 :(得分:2)
如果您在resource
块中定义端点,例如:
module MyApiModule
class MyApiClass < Grape::API
resource :foo do
get :time do
{epoch_time: Time.now.to_i.to_s}
end
end
resource :bar do
get :bar_time do
{epoch_bar_time: Time.now.to_i.to_s}
end
end
end
end
...你会看到这个漂亮的分隔符: