Sha256: 7b9bf67f48e013e53753854e96a85d963457e26ad98f124084a9e67b1971ccce

Contents?: true

Size: 479 Bytes

Versions: 7

Compression:

Stored size: 479 Bytes

Contents

module IntrospectiveGrape
  module Doc
    def index_documentation(name=nil)
      "returns list of all #{name}"
    end

    def show_documentation(name=nil)
      "returns details on a #{name}"
    end

    def create_documentation(name=nil)
      "creates a new #{name} record"
    end

    def update_documentation(name=nil)
      "updates the details of a #{name}"
    end

    def destroy_documentation(name=nil)
      "destroys the details of a #{name}"
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
introspective_grape-0.6.1 lib/introspective_grape/doc.rb
introspective_grape-0.5.7 lib/introspective_grape/doc.rb
introspective_grape-0.5.6 lib/introspective_grape/doc.rb
introspective_grape-0.5.5 lib/introspective_grape/doc.rb
introspective_grape-0.5.4 lib/introspective_grape/doc.rb
introspective_grape-0.5.2 lib/introspective_grape/doc.rb
introspective_grape-0.5.0 lib/introspective_grape/doc.rb