14 lines
413 B
Ruby
14 lines
413 B
Ruby
# The module for custom YARD handlers.
|
|
module PuppetStrings::Yard::Handlers
|
|
# The module for custom Ruby YARD handlers.
|
|
module Ruby
|
|
require 'puppet-strings/yard/handlers/ruby/type_handler'
|
|
end
|
|
|
|
# The module for custom Puppet YARD handlers.
|
|
module Puppet
|
|
require 'puppet-strings/yard/handlers/puppet/class_handler'
|
|
require 'puppet-strings/yard/handlers/puppet/defined_type_handler'
|
|
end
|
|
end
|