Class: PortaText::Command::Api::NumberInspect

Inherits:
Base
  • Object
show all
Defined in:
lib/portatext/command/api/inspect.rb

Overview

The inspect endpoint. github.com/PortaText/docs/wiki/REST-API#api_inspect

Author

Marcelo Gornstein ([email protected])

Copyright

Copyright © 2015 PortaText

License

Apache-2.0

Instance Attribute Summary

Attributes inherited from Base

#client

Instance Method Summary collapse

Methods inherited from Base

#accept_content_type, #body, #content_type, #delete, #get, #initialize, #patch, #post, #put, #set

Constructor Details

This class inherits a constructor from PortaText::Command::Base

Instance Method Details

#csv(file) ⇒ Object



15
16
17
# File 'lib/portatext/command/api/inspect.rb', line 15

def csv(file)
  set :file, file
end

#endpoint(_method) ⇒ Object



19
20
21
22
23
24
# File 'lib/portatext/command/api/inspect.rb', line 19

def endpoint(_method)
  number = @args[:number]
  @args.delete :number
  return "inspect/#{number}" unless number.nil?
  'inspect'
end

#number(number) ⇒ Object



11
12
13
# File 'lib/portatext/command/api/inspect.rb', line 11

def number(number)
  set :number, number
end