<% module_namespacing do -%> module API

module V<%= options['version'] %>
  module <%= file_name.camelcase %>
    module Decorator
      class Collection < Pragma::Decorator::Base
        include Pragma::Decorator::Type
        include Pragma::Decorator::Collection
        include Pragma::Decorator::Pagination

        decorate_with Instance
      end
    end
  end
end

end <% end -%>