mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-23 06:16:42 +00:00
15 lines
282 B
Ruby
15 lines
282 B
Ruby
module Rswag
|
|
module Specs
|
|
class Railtie < ::Rails::Railtie
|
|
|
|
rake_tasks do
|
|
load File.expand_path('../../../tasks/rswag-specs_tasks.rake', __FILE__)
|
|
end
|
|
|
|
generators do
|
|
require 'generators/rspec/swagger_generator.rb'
|
|
end
|
|
end
|
|
end
|
|
end
|