Module: Pipekit
- Defined in:
- lib/pipekit/result.rb,
lib/pipekit.rb,
lib/pipekit/deal.rb,
lib/pipekit/note.rb,
lib/pipekit/config.rb,
lib/pipekit/person.rb,
lib/pipekit/request.rb,
lib/pipekit/version.rb,
lib/pipekit/response.rb,
lib/pipekit/deal_field.rb,
lib/pipekit/repository.rb,
lib/pipekit/person_field.rb,
lib/pipekit/field_repository.rb
Overview
Understands how to represent the result of a request to the Pipedrive API
Defined Under Namespace
Modules: FieldRepository, Repository Classes: Config, Deal, DealField, LabelNotFoundError, Note, Person, PersonField, Request, ResourceNotFoundError, Response, Result, UnsuccessfulRequestError
Constant Summary collapse
- UnknownPersonError =
Class.new(StandardError)
- VERSION =
"1.0.2"
Class Method Summary collapse
-
.config_file_path=(path) ⇒ Object
Define a path to Pipedrive config file.
Class Method Details
.config_file_path=(path) ⇒ Object
Define a path to Pipedrive config file
Example:
Pipekit.config_file_path = File.join(“config”, “pipedrive.yml”)
22 23 24 |
# File 'lib/pipekit.rb', line 22 def self.config_file_path=(path) Config.file_path = path end |