openapi-generator/samples/server/petstore/sinatra/my_app.rb
2015-06-19 02:11:08 +08:00

10 lines
182 B
Ruby

require './lib/swaggering'
# only need to extend if you want special configuration!
class MyApp < Swaggering
self.configure do |config|
config.api_version = '0.2'
end
end