Sha256: 15748281f9c865f0db8b3f70dad13f1d8d9380253fae47b8efd93b1ae94dda26

Contents?: true

Size: 805 Bytes

Versions: 48

Compression:

Stored size: 805 Bytes

Contents

module PortaText
  module Command
    module Api
      # The templates endpoint.
      # https://github.com/PortaText/docs/wiki/REST-API#api_templates
      #
      # Author::    Marcelo Gornstein (mailto:marcelog@portatext.com)
      # Copyright:: Copyright (c) 2015 PortaText
      # License::   Apache-2.0
      class Templates < Base
        def id(id)
          set :id, id
        end

        def name(name)
          set :name, name
        end

        def description(description)
          set :description, description
        end

        def text(text)
          set :text, text
        end

        def endpoint(_method)
          return 'templates' if @args[:id].nil?
          id = @args[:id]
          @args.delete :id
          "templates/#{id}"
        end
      end
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
portatext-1.6.1 lib/portatext/command/api/templates.rb
portatext-1.6.0 lib/portatext/command/api/templates.rb
portatext-1.5.23 lib/portatext/command/api/templates.rb
portatext-1.5.22 lib/portatext/command/api/templates.rb
portatext-1.5.21 lib/portatext/command/api/templates.rb
portatext-1.5.20 lib/portatext/command/api/templates.rb
portatext-1.5.19 lib/portatext/command/api/templates.rb
portatext-1.5.18 lib/portatext/command/api/templates.rb
portatext-1.5.17 lib/portatext/command/api/templates.rb
portatext-1.5.16 lib/portatext/command/api/templates.rb
portatext-1.5.15 lib/portatext/command/api/templates.rb
portatext-1.5.14 lib/portatext/command/api/templates.rb
portatext-1.5.13 lib/portatext/command/api/templates.rb
portatext-1.5.12 lib/portatext/command/api/templates.rb
portatext-1.5.11 lib/portatext/command/api/templates.rb
portatext-1.5.10 lib/portatext/command/api/templates.rb
portatext-1.5.9 lib/portatext/command/api/templates.rb
portatext-1.5.8 lib/portatext/command/api/templates.rb
portatext-1.5.7 lib/portatext/command/api/templates.rb
portatext-1.5.6 lib/portatext/command/api/templates.rb