pipedrive_ruby 1.0.1.pre15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +30 -0
  3. data/.gitignore +12 -0
  4. data/.rspec +2 -0
  5. data/.rubocop.yml +1156 -0
  6. data/.travis.yml +8 -0
  7. data/CODE_OF_CONDUCT.md +49 -0
  8. data/Gemfile +4 -0
  9. data/Guardfile +56 -0
  10. data/LICENSE.txt +21 -0
  11. data/README.md +59 -0
  12. data/Rakefile +6 -0
  13. data/bin/console +14 -0
  14. data/bin/setup +8 -0
  15. data/doc/Activities.html +138 -0
  16. data/doc/ActivitiesFields.html +134 -0
  17. data/doc/ActivitiesTypes.html +141 -0
  18. data/doc/Authorizations.html +138 -0
  19. data/doc/Currencies.html +143 -0
  20. data/doc/DealsFields.html +146 -0
  21. data/doc/EmailMessages.html +137 -0
  22. data/doc/EmailThreads.html +136 -0
  23. data/doc/Estages.html +137 -0
  24. data/doc/Files.html +139 -0
  25. data/doc/Filters.html +139 -0
  26. data/doc/GlobalMessages.html +134 -0
  27. data/doc/Goals.html +137 -0
  28. data/doc/NoteFields.html +134 -0
  29. data/doc/Notes.html +137 -0
  30. data/doc/OrganizationFields.html +147 -0
  31. data/doc/OrganizationRelationships.html +135 -0
  32. data/doc/PermissionSets.html +134 -0
  33. data/doc/PersonFields.html +146 -0
  34. data/doc/Persons.html +136 -0
  35. data/doc/PipedriveRuby/Activities.html +159 -0
  36. data/doc/PipedriveRuby/ActivitiesFields.html +148 -0
  37. data/doc/PipedriveRuby/ActivitiesTypes.html +148 -0
  38. data/doc/PipedriveRuby/ActivityFields.html +148 -0
  39. data/doc/PipedriveRuby/ActivityTypes.html +148 -0
  40. data/doc/PipedriveRuby/Authorizations.html +231 -0
  41. data/doc/PipedriveRuby/Base.html +456 -0
  42. data/doc/PipedriveRuby/Currencies.html +162 -0
  43. data/doc/PipedriveRuby/DealFields.html +148 -0
  44. data/doc/PipedriveRuby/Deals.html +842 -0
  45. data/doc/PipedriveRuby/HttpFactory.html +1362 -0
  46. data/doc/PipedriveRuby/Organizations.html +148 -0
  47. data/doc/PipedriveRuby/PipedriveClient.html +385 -0
  48. data/doc/PipedriveRuby/Products.html +319 -0
  49. data/doc/PipedriveRuby/PushNotifications.html +159 -0
  50. data/doc/PipedriveRuby/Recents.html +159 -0
  51. data/doc/PipedriveRuby/SearchResults.html +250 -0
  52. data/doc/PipedriveRuby/UserConnections.html +159 -0
  53. data/doc/PipedriveRuby/UserSettings.html +159 -0
  54. data/doc/PipedriveRuby.html +174 -0
  55. data/doc/Pipelines.html +134 -0
  56. data/doc/ProductFields.html +147 -0
  57. data/doc/Products.html +140 -0
  58. data/doc/PushNotifications.html +141 -0
  59. data/doc/Recent.html +134 -0
  60. data/doc/Roles.html +134 -0
  61. data/doc/SearchResults.html +135 -0
  62. data/doc/UserConnections.html +134 -0
  63. data/doc/UserSettings.html +134 -0
  64. data/doc/Users.html +137 -0
  65. data/doc/_index.html +425 -0
  66. data/doc/class_list.html +51 -0
  67. data/doc/css/common.css +1 -0
  68. data/doc/css/full_list.css +58 -0
  69. data/doc/css/style.css +474 -0
  70. data/doc/file.README.html +160 -0
  71. data/doc/file_list.html +56 -0
  72. data/doc/frames.html +17 -0
  73. data/doc/index.html +160 -0
  74. data/doc/js/app.js +243 -0
  75. data/doc/js/full_list.js +216 -0
  76. data/doc/js/jquery.js +4 -0
  77. data/doc/method_list.html +411 -0
  78. data/doc/top-level-namespace.html +114 -0
  79. data/lib/http_factory.rb +154 -0
  80. data/lib/pipedrive_client.rb +24 -0
  81. data/lib/pipedrive_ruby/version.rb +4 -0
  82. data/lib/pipedrive_ruby.rb +48 -0
  83. data/lib/resources/activities.rb +9 -0
  84. data/lib/resources/activitiy_fields.rb +6 -0
  85. data/lib/resources/activity_types.rb +11 -0
  86. data/lib/resources/authorizations.rb +16 -0
  87. data/lib/resources/base.rb +17 -0
  88. data/lib/resources/currencies.rb +13 -0
  89. data/lib/resources/deal_fields.rb +10 -0
  90. data/lib/resources/deals.rb +72 -0
  91. data/lib/resources/email_messages.rb +5 -0
  92. data/lib/resources/email_threads.rb +4 -0
  93. data/lib/resources/files.rb +4 -0
  94. data/lib/resources/filters.rb +4 -0
  95. data/lib/resources/global_messages.rb +3 -0
  96. data/lib/resources/goals.rb +4 -0
  97. data/lib/resources/note_fields.rb +3 -0
  98. data/lib/resources/notes.rb +4 -0
  99. data/lib/resources/organization_fields.rb +8 -0
  100. data/lib/resources/organization_relationships.rb +3 -0
  101. data/lib/resources/organizations.rb +7 -0
  102. data/lib/resources/permission_sets.rb +3 -0
  103. data/lib/resources/person_fields.rb +3 -0
  104. data/lib/resources/persons.rb +4 -0
  105. data/lib/resources/pipelines.rb +3 -0
  106. data/lib/resources/product_fields.rb +8 -0
  107. data/lib/resources/products.rb +29 -0
  108. data/lib/resources/push_notifications.rb +10 -0
  109. data/lib/resources/recents.rb +6 -0
  110. data/lib/resources/roles.rb +3 -0
  111. data/lib/resources/search_results.rb +14 -0
  112. data/lib/resources/stages.rb +4 -0
  113. data/lib/resources/user_connections.rb +7 -0
  114. data/lib/resources/user_settings.rb +6 -0
  115. data/lib/resources/users.rb +5 -0
  116. data/pipedrive_ruby.gemspec +34 -0
  117. metadata +286 -0
@@ -0,0 +1,134 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Class: UserSettings
8
+
9
+ &mdash; Documentation by YARD 0.9.0
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ pathId = "UserSettings";
19
+ relpath = '';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="class_list.html"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="_index.html">Index (U)</a> &raquo;
40
+
41
+
42
+ <span class="title">UserSettings</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <iframe id="search_frame" src="class_list.html"></iframe>
63
+
64
+ <div id="content"><h1>Class: UserSettings
65
+
66
+
67
+
68
+ </h1>
69
+ <div class="box_info">
70
+
71
+ <dl>
72
+ <dt>Inherits:</dt>
73
+ <dd>
74
+ <span class="inheritName">Object</span>
75
+
76
+ <ul class="fullTree">
77
+ <li>Object</li>
78
+
79
+ <li class="next">UserSettings</li>
80
+
81
+ </ul>
82
+ <a href="#" class="inheritanceTree">show all</a>
83
+
84
+ </dd>
85
+ </dl>
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <dl>
98
+ <dt>Defined in:</dt>
99
+ <dd>lib/resources/user_settings.rb</dd>
100
+ </dl>
101
+
102
+ </div>
103
+
104
+ <h2>Overview</h2><div class="docstring">
105
+ <div class="discussion">
106
+
107
+ <p>Lists settings of authorized user.</p>
108
+
109
+
110
+ </div>
111
+ </div>
112
+ <div class="tags">
113
+
114
+
115
+ </div>
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+ </div>
125
+
126
+ <div id="footer">
127
+ Generated on Fri Jul 15 09:05:45 2016 by
128
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
129
+ 0.9.0 (ruby-2.2.5).
130
+ </div>
131
+
132
+ </div>
133
+ </body>
134
+ </html>
data/doc/Users.html ADDED
@@ -0,0 +1,137 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Class: Users
8
+
9
+ &mdash; Documentation by YARD 0.9.0
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ pathId = "Users";
19
+ relpath = '';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="class_list.html"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="_index.html">Index (U)</a> &raquo;
40
+
41
+
42
+ <span class="title">Users</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <iframe id="search_frame" src="class_list.html"></iframe>
63
+
64
+ <div id="content"><h1>Class: Users
65
+
66
+
67
+
68
+ </h1>
69
+ <div class="box_info">
70
+
71
+ <dl>
72
+ <dt>Inherits:</dt>
73
+ <dd>
74
+ <span class="inheritName">Object</span>
75
+
76
+ <ul class="fullTree">
77
+ <li>Object</li>
78
+
79
+ <li class="next">Users</li>
80
+
81
+ </ul>
82
+ <a href="#" class="inheritanceTree">show all</a>
83
+
84
+ </dd>
85
+ </dl>
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <dl>
98
+ <dt>Defined in:</dt>
99
+ <dd>lib/resources/users.rb</dd>
100
+ </dl>
101
+
102
+ </div>
103
+
104
+ <h2>Overview</h2><div class="docstring">
105
+ <div class="discussion">
106
+
107
+ <p>Users are people with access to your Pipedrive account. A user may belong
108
+ to one or many Pipedrive accounts, so deleting a user from one Pipedrive
109
+ account will not remove the user from the data store if he/she is connected
110
+ to multiple accounts. Users should not be confused with Persons.</p>
111
+
112
+
113
+ </div>
114
+ </div>
115
+ <div class="tags">
116
+
117
+
118
+ </div>
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+ </div>
128
+
129
+ <div id="footer">
130
+ Generated on Tue Jul 19 12:47:24 2016 by
131
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
132
+ 0.9.0 (ruby-2.2.5).
133
+ </div>
134
+
135
+ </div>
136
+ </body>
137
+ </html>
data/doc/_index.html ADDED
@@ -0,0 +1,425 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Documentation by YARD 0.9.0
8
+
9
+ </title>
10
+
11
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
12
+
13
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
14
+
15
+ <script type="text/javascript" charset="utf-8">
16
+ pathId = null;
17
+ relpath = '';
18
+ </script>
19
+
20
+
21
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
24
+
25
+
26
+ </head>
27
+ <body>
28
+ <div class="nav_wrap">
29
+ <iframe id="nav" src="class_list.html"></iframe>
30
+ <div id="resizer"></div>
31
+ </div>
32
+
33
+ <div id="main" tabindex="-1">
34
+ <div id="header">
35
+ <div id="menu">
36
+
37
+ </div>
38
+
39
+ <div id="search">
40
+
41
+ <a class="full_list_link" id="class_list_link"
42
+ href="class_list.html">
43
+
44
+ <svg width="24" height="24">
45
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
46
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
47
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
48
+ </svg>
49
+ </a>
50
+
51
+ </div>
52
+ <div class="clear"></div>
53
+ </div>
54
+
55
+ <iframe id="search_frame" src="class_list.html"></iframe>
56
+
57
+ <div id="content"><h1 class="noborder title">Documentation by YARD 0.9.0</h1>
58
+ <div id="listing">
59
+ <h1 class="alphaindex">Alphabetic Index</h1>
60
+
61
+ <h2>File Listing</h2>
62
+ <ul id="files" class="index_inline_list">
63
+
64
+
65
+ <li class="r1"><a href="index.html" title="README">README</a></li>
66
+
67
+
68
+ </ul>
69
+
70
+ <div class="clear"></div>
71
+ <h2>Namespace Listing A-Z</h2>
72
+
73
+
74
+
75
+
76
+ <table>
77
+ <tr>
78
+ <td valign='top' width="33%">
79
+
80
+
81
+ <ul id="alpha_A" class="alpha">
82
+ <li class="letter">A</li>
83
+ <ul>
84
+
85
+ <li>
86
+ <span class='object_link'><a href="PipedriveRuby/Activities.html" title="PipedriveRuby::Activities (class)">Activities</a></span>
87
+
88
+ <small>(PipedriveRuby)</small>
89
+
90
+ </li>
91
+
92
+ <li>
93
+ <span class='object_link'><a href="PipedriveRuby/ActivityFields.html" title="PipedriveRuby::ActivityFields (class)">ActivityFields</a></span>
94
+
95
+ <small>(PipedriveRuby)</small>
96
+
97
+ </li>
98
+
99
+ <li>
100
+ <span class='object_link'><a href="PipedriveRuby/ActivityTypes.html" title="PipedriveRuby::ActivityTypes (class)">ActivityTypes</a></span>
101
+
102
+ <small>(PipedriveRuby)</small>
103
+
104
+ </li>
105
+
106
+ <li>
107
+ <span class='object_link'><a href="PipedriveRuby/Authorizations.html" title="PipedriveRuby::Authorizations (class)">Authorizations</a></span>
108
+
109
+ <small>(PipedriveRuby)</small>
110
+
111
+ </li>
112
+
113
+ </ul>
114
+ </ul>
115
+
116
+
117
+ <ul id="alpha_B" class="alpha">
118
+ <li class="letter">B</li>
119
+ <ul>
120
+
121
+ <li>
122
+ <span class='object_link'><a href="PipedriveRuby/Base.html" title="PipedriveRuby::Base (class)">Base</a></span>
123
+
124
+ <small>(PipedriveRuby)</small>
125
+
126
+ </li>
127
+
128
+ </ul>
129
+ </ul>
130
+
131
+
132
+ <ul id="alpha_C" class="alpha">
133
+ <li class="letter">C</li>
134
+ <ul>
135
+
136
+ <li>
137
+ <span class='object_link'><a href="PipedriveRuby/Currencies.html" title="PipedriveRuby::Currencies (class)">Currencies</a></span>
138
+
139
+ <small>(PipedriveRuby)</small>
140
+
141
+ </li>
142
+
143
+ </ul>
144
+ </ul>
145
+
146
+
147
+ <ul id="alpha_D" class="alpha">
148
+ <li class="letter">D</li>
149
+ <ul>
150
+
151
+ <li>
152
+ <span class='object_link'><a href="PipedriveRuby/DealFields.html" title="PipedriveRuby::DealFields (class)">DealFields</a></span>
153
+
154
+ <small>(PipedriveRuby)</small>
155
+
156
+ </li>
157
+
158
+ <li>
159
+ <span class='object_link'><a href="PipedriveRuby/Deals.html" title="PipedriveRuby::Deals (class)">Deals</a></span>
160
+
161
+ <small>(PipedriveRuby)</small>
162
+
163
+ </li>
164
+
165
+ </ul>
166
+ </ul>
167
+
168
+
169
+ <ul id="alpha_E" class="alpha">
170
+ <li class="letter">E</li>
171
+ <ul>
172
+
173
+ <li>
174
+ <span class='object_link'><a href="EmailMessages.html" title="EmailMessages (class)">EmailMessages</a></span>
175
+
176
+ </li>
177
+
178
+ <li>
179
+ <span class='object_link'><a href="EmailThreads.html" title="EmailThreads (class)">EmailThreads</a></span>
180
+
181
+ </li>
182
+
183
+ <li>
184
+ <span class='object_link'><a href="Estages.html" title="Estages (class)">Estages</a></span>
185
+
186
+ </li>
187
+
188
+ </ul>
189
+ </ul>
190
+
191
+
192
+ <ul id="alpha_F" class="alpha">
193
+ <li class="letter">F</li>
194
+ <ul>
195
+
196
+ <li>
197
+ <span class='object_link'><a href="Files.html" title="Files (class)">Files</a></span>
198
+
199
+ </li>
200
+
201
+ <li>
202
+ <span class='object_link'><a href="Filters.html" title="Filters (class)">Filters</a></span>
203
+
204
+ </li>
205
+
206
+ </ul>
207
+ </ul>
208
+
209
+
210
+ <ul id="alpha_G" class="alpha">
211
+ <li class="letter">G</li>
212
+ <ul>
213
+
214
+ <li>
215
+ <span class='object_link'><a href="GlobalMessages.html" title="GlobalMessages (class)">GlobalMessages</a></span>
216
+
217
+ </li>
218
+
219
+ <li>
220
+ <span class='object_link'><a href="Goals.html" title="Goals (class)">Goals</a></span>
221
+
222
+ </li>
223
+
224
+ </ul>
225
+ </ul>
226
+
227
+
228
+ </td><td valign='top' width="33%">
229
+
230
+
231
+ <ul id="alpha_H" class="alpha">
232
+ <li class="letter">H</li>
233
+ <ul>
234
+
235
+ <li>
236
+ <span class='object_link'><a href="PipedriveRuby/HttpFactory.html" title="PipedriveRuby::HttpFactory (class)">HttpFactory</a></span>
237
+
238
+ <small>(PipedriveRuby)</small>
239
+
240
+ </li>
241
+
242
+ </ul>
243
+ </ul>
244
+
245
+
246
+ <ul id="alpha_N" class="alpha">
247
+ <li class="letter">N</li>
248
+ <ul>
249
+
250
+ <li>
251
+ <span class='object_link'><a href="NoteFields.html" title="NoteFields (class)">NoteFields</a></span>
252
+
253
+ </li>
254
+
255
+ <li>
256
+ <span class='object_link'><a href="Notes.html" title="Notes (class)">Notes</a></span>
257
+
258
+ </li>
259
+
260
+ </ul>
261
+ </ul>
262
+
263
+
264
+ <ul id="alpha_O" class="alpha">
265
+ <li class="letter">O</li>
266
+ <ul>
267
+
268
+ <li>
269
+ <span class='object_link'><a href="OrganizationFields.html" title="OrganizationFields (class)">OrganizationFields</a></span>
270
+
271
+ </li>
272
+
273
+ <li>
274
+ <span class='object_link'><a href="OrganizationRelationships.html" title="OrganizationRelationships (class)">OrganizationRelationships</a></span>
275
+
276
+ </li>
277
+
278
+ <li>
279
+ <span class='object_link'><a href="PipedriveRuby/Organizations.html" title="PipedriveRuby::Organizations (class)">Organizations</a></span>
280
+
281
+ <small>(PipedriveRuby)</small>
282
+
283
+ </li>
284
+
285
+ </ul>
286
+ </ul>
287
+
288
+
289
+ <ul id="alpha_P" class="alpha">
290
+ <li class="letter">P</li>
291
+ <ul>
292
+
293
+ <li>
294
+ <span class='object_link'><a href="PermissionSets.html" title="PermissionSets (class)">PermissionSets</a></span>
295
+
296
+ </li>
297
+
298
+ <li>
299
+ <span class='object_link'><a href="PersonFields.html" title="PersonFields (class)">PersonFields</a></span>
300
+
301
+ </li>
302
+
303
+ <li>
304
+ <span class='object_link'><a href="Persons.html" title="Persons (class)">Persons</a></span>
305
+
306
+ </li>
307
+
308
+ <li>
309
+ <span class='object_link'><a href="PipedriveRuby/PipedriveClient.html" title="PipedriveRuby::PipedriveClient (class)">PipedriveClient</a></span>
310
+
311
+ <small>(PipedriveRuby)</small>
312
+
313
+ </li>
314
+
315
+ <li>
316
+ <span class='object_link'><a href="PipedriveRuby.html" title="PipedriveRuby (module)">PipedriveRuby</a></span>
317
+
318
+ </li>
319
+
320
+ <li>
321
+ <span class='object_link'><a href="Pipelines.html" title="Pipelines (class)">Pipelines</a></span>
322
+
323
+ </li>
324
+
325
+ <li>
326
+ <span class='object_link'><a href="ProductFields.html" title="ProductFields (class)">ProductFields</a></span>
327
+
328
+ </li>
329
+
330
+ <li>
331
+ <span class='object_link'><a href="PipedriveRuby/Products.html" title="PipedriveRuby::Products (class)">Products</a></span>
332
+
333
+ <small>(PipedriveRuby)</small>
334
+
335
+ </li>
336
+
337
+ <li>
338
+ <span class='object_link'><a href="PipedriveRuby/PushNotifications.html" title="PipedriveRuby::PushNotifications (class)">PushNotifications</a></span>
339
+
340
+ <small>(PipedriveRuby)</small>
341
+
342
+ </li>
343
+
344
+ </ul>
345
+ </ul>
346
+
347
+
348
+ <ul id="alpha_R" class="alpha">
349
+ <li class="letter">R</li>
350
+ <ul>
351
+
352
+ <li>
353
+ <span class='object_link'><a href="PipedriveRuby/Recents.html" title="PipedriveRuby::Recents (class)">Recents</a></span>
354
+
355
+ <small>(PipedriveRuby)</small>
356
+
357
+ </li>
358
+
359
+ <li>
360
+ <span class='object_link'><a href="Roles.html" title="Roles (class)">Roles</a></span>
361
+
362
+ </li>
363
+
364
+ </ul>
365
+ </ul>
366
+
367
+
368
+ <ul id="alpha_S" class="alpha">
369
+ <li class="letter">S</li>
370
+ <ul>
371
+
372
+ <li>
373
+ <span class='object_link'><a href="PipedriveRuby/SearchResults.html" title="PipedriveRuby::SearchResults (class)">SearchResults</a></span>
374
+
375
+ <small>(PipedriveRuby)</small>
376
+
377
+ </li>
378
+
379
+ </ul>
380
+ </ul>
381
+
382
+
383
+ <ul id="alpha_U" class="alpha">
384
+ <li class="letter">U</li>
385
+ <ul>
386
+
387
+ <li>
388
+ <span class='object_link'><a href="PipedriveRuby/UserConnections.html" title="PipedriveRuby::UserConnections (class)">UserConnections</a></span>
389
+
390
+ <small>(PipedriveRuby)</small>
391
+
392
+ </li>
393
+
394
+ <li>
395
+ <span class='object_link'><a href="PipedriveRuby/UserSettings.html" title="PipedriveRuby::UserSettings (class)">UserSettings</a></span>
396
+
397
+ <small>(PipedriveRuby)</small>
398
+
399
+ </li>
400
+
401
+ <li>
402
+ <span class='object_link'><a href="Users.html" title="Users (class)">Users</a></span>
403
+
404
+ </li>
405
+
406
+ </ul>
407
+ </ul>
408
+
409
+ </td>
410
+ </tr>
411
+ </table>
412
+
413
+ </div>
414
+
415
+ </div>
416
+
417
+ <div id="footer">
418
+ Generated on Tue Jul 19 12:47:24 2016 by
419
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
420
+ 0.9.0 (ruby-2.2.5).
421
+ </div>
422
+
423
+ </div>
424
+ </body>
425
+ </html>