We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm new on this, do I have to put
require 'pipedrive-ruby' Pipedrive.authenticate( YOUR_API_TOKEN ) Pipedrive::Deal.find( DEAL_ID )
in the gemfile ? I have a form and I want to receive the information written there, in my pipedrive, so where do I put require: ... ?
The text was updated successfully, but these errors were encountered:
require 'pipedrive-ruby' goes in your Gemfile.
require 'pipedrive-ruby'
If you are using rails, you will want to create an initializer, in a file like config/initializers/pipedrive.rb with the:
config/initializers/pipedrive.rb
# config/initializers/pipedrive.rb Pipedrive.authenticate( YOUR_API_TOKEN ) Pipedrive::Deal.find( DEAL_ID )
Sorry, something went wrong.
No branches or pull requests
Hi, I'm new on this, do I have to put
in the gemfile ?
I have a form and I want to receive the information written there, in my pipedrive, so where do I put require: ... ?
The text was updated successfully, but these errors were encountered: