absorb_api 0.1.0

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 (96) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/Gemfile +11 -0
  4. data/LICENSE.txt +21 -0
  5. data/README.md +203 -0
  6. data/Rakefile +2 -0
  7. data/absorb_api.gemspec +25 -0
  8. data/bin/console +14 -0
  9. data/bin/setup +8 -0
  10. data/doc/AbsorbApi.html +216 -0
  11. data/doc/AbsorbApi/Base.html +239 -0
  12. data/doc/AbsorbApi/Category.html +173 -0
  13. data/doc/AbsorbApi/Certificate.html +212 -0
  14. data/doc/AbsorbApi/Chapter.html +160 -0
  15. data/doc/AbsorbApi/Collection.html +180 -0
  16. data/doc/AbsorbApi/Configuration.html +188 -0
  17. data/doc/AbsorbApi/Course.html +534 -0
  18. data/doc/AbsorbApi/CourseEnrollment.html +437 -0
  19. data/doc/AbsorbApi/Curriculum.html +498 -0
  20. data/doc/AbsorbApi/Department.html +242 -0
  21. data/doc/AbsorbApi/LessonEnrollment.html +370 -0
  22. data/doc/AbsorbApi/Orm.html +201 -0
  23. data/doc/AbsorbApi/Relations.html +301 -0
  24. data/doc/AbsorbApi/ResourceNotFound.html +102 -0
  25. data/doc/AbsorbApi/RouteNotFound.html +102 -0
  26. data/doc/AbsorbApi/User.html +615 -0
  27. data/doc/AbsorbApi/ValidationError.html +102 -0
  28. data/doc/Gemfile.html +100 -0
  29. data/doc/Gemfile_lock.html +150 -0
  30. data/doc/LICENSE_txt.html +113 -0
  31. data/doc/README_md.html +340 -0
  32. data/doc/Rakefile.html +93 -0
  33. data/doc/absorb_api_gemspec.html +126 -0
  34. data/doc/bin/setup.html +97 -0
  35. data/doc/created.rid +26 -0
  36. data/doc/css/fonts.css +167 -0
  37. data/doc/css/rdoc.css +590 -0
  38. data/doc/fonts/Lato-Light.ttf +0 -0
  39. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  40. data/doc/fonts/Lato-Regular.ttf +0 -0
  41. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  42. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  43. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  44. data/doc/images/add.png +0 -0
  45. data/doc/images/arrow_up.png +0 -0
  46. data/doc/images/brick.png +0 -0
  47. data/doc/images/brick_link.png +0 -0
  48. data/doc/images/bug.png +0 -0
  49. data/doc/images/bullet_black.png +0 -0
  50. data/doc/images/bullet_toggle_minus.png +0 -0
  51. data/doc/images/bullet_toggle_plus.png +0 -0
  52. data/doc/images/date.png +0 -0
  53. data/doc/images/delete.png +0 -0
  54. data/doc/images/find.png +0 -0
  55. data/doc/images/loadingAnimation.gif +0 -0
  56. data/doc/images/macFFBgHack.png +0 -0
  57. data/doc/images/package.png +0 -0
  58. data/doc/images/page_green.png +0 -0
  59. data/doc/images/page_white_text.png +0 -0
  60. data/doc/images/page_white_width.png +0 -0
  61. data/doc/images/plugin.png +0 -0
  62. data/doc/images/ruby.png +0 -0
  63. data/doc/images/tag_blue.png +0 -0
  64. data/doc/images/tag_green.png +0 -0
  65. data/doc/images/transparent.png +0 -0
  66. data/doc/images/wrench.png +0 -0
  67. data/doc/images/wrench_orange.png +0 -0
  68. data/doc/images/zoom.png +0 -0
  69. data/doc/index.html +135 -0
  70. data/doc/js/darkfish.js +161 -0
  71. data/doc/js/jquery.js +4 -0
  72. data/doc/js/navigation.js +142 -0
  73. data/doc/js/navigation.js.gz +0 -0
  74. data/doc/js/search.js +109 -0
  75. data/doc/js/search_index.js +1 -0
  76. data/doc/js/search_index.js.gz +0 -0
  77. data/doc/js/searcher.js +228 -0
  78. data/doc/js/searcher.js.gz +0 -0
  79. data/doc/table_of_contents.html +218 -0
  80. data/lib/absorb_api.rb +26 -0
  81. data/lib/absorb_api/base.rb +31 -0
  82. data/lib/absorb_api/category.rb +7 -0
  83. data/lib/absorb_api/certificate.rb +7 -0
  84. data/lib/absorb_api/chapter.rb +7 -0
  85. data/lib/absorb_api/collection.rb +19 -0
  86. data/lib/absorb_api/configuration.rb +21 -0
  87. data/lib/absorb_api/course.rb +24 -0
  88. data/lib/absorb_api/course_enrollment.rb +33 -0
  89. data/lib/absorb_api/curriculum.rb +7 -0
  90. data/lib/absorb_api/department.rb +10 -0
  91. data/lib/absorb_api/lesson_enrollment.rb +5 -0
  92. data/lib/absorb_api/orm.rb +28 -0
  93. data/lib/absorb_api/relations.rb +62 -0
  94. data/lib/absorb_api/user.rb +27 -0
  95. data/lib/absorb_api/version.rb +3 -0
  96. metadata +168 -0
@@ -0,0 +1,242 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class AbsorbApi::Department - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "../";
11
+ </script>
12
+
13
+ <script src="../js/jquery.js"></script>
14
+ <script src="../js/darkfish.js"></script>
15
+
16
+ <link href="../css/fonts.css" rel="stylesheet">
17
+ <link href="../css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="class">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="../index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="../table_of_contents.html#pages">Pages</a>
31
+ <a href="../table_of_contents.html#classes">Classes</a>
32
+ <a href="../table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="class-metadata">
56
+
57
+ <div id="parent-class-section" class="nav-section">
58
+ <h3>Parent</h3>
59
+
60
+
61
+ <p class="link"><a href="Base.html">AbsorbApi::Base</a>
62
+
63
+ </div>
64
+
65
+ <div id="includes-section" class="nav-section">
66
+ <h3>Included Modules</h3>
67
+
68
+ <ul class="link-list">
69
+
70
+
71
+ <li><a class="include" href="Orm.html">AbsorbApi::Orm</a>
72
+
73
+
74
+
75
+ <li><a class="include" href="Relations.html">AbsorbApi::Relations</a>
76
+
77
+
78
+ </ul>
79
+ </div>
80
+
81
+
82
+
83
+ </div>
84
+ </nav>
85
+
86
+ <main role="main" aria-labelledby="class-AbsorbApi::Department">
87
+ <h1 id="class-AbsorbApi::Department" class="class">
88
+ class AbsorbApi::Department
89
+ </h1>
90
+
91
+ <section class="description">
92
+
93
+ </section>
94
+
95
+
96
+
97
+
98
+ <section id="5Buntitled-5D" class="documentation-section">
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+ <section class="attribute-method-details" class="method-section">
107
+ <header>
108
+ <h3>Attributes</h3>
109
+ </header>
110
+
111
+
112
+ <div id="attribute-i-company_name" class="method-detail">
113
+ <div class="method-heading attribute-method-heading">
114
+ <span class="method-name">company_name</span><span
115
+ class="attribute-access-type">[RW]</span>
116
+ </div>
117
+
118
+ <div class="method-description">
119
+
120
+
121
+
122
+ </div>
123
+ </div>
124
+
125
+ <div id="attribute-i-currency_id" class="method-detail">
126
+ <div class="method-heading attribute-method-heading">
127
+ <span class="method-name">currency_id</span><span
128
+ class="attribute-access-type">[RW]</span>
129
+ </div>
130
+
131
+ <div class="method-description">
132
+
133
+
134
+
135
+ </div>
136
+ </div>
137
+
138
+ <div id="attribute-i-email_address" class="method-detail">
139
+ <div class="method-heading attribute-method-heading">
140
+ <span class="method-name">email_address</span><span
141
+ class="attribute-access-type">[RW]</span>
142
+ </div>
143
+
144
+ <div class="method-description">
145
+
146
+
147
+
148
+ </div>
149
+ </div>
150
+
151
+ <div id="attribute-i-external_id" class="method-detail">
152
+ <div class="method-heading attribute-method-heading">
153
+ <span class="method-name">external_id</span><span
154
+ class="attribute-access-type">[RW]</span>
155
+ </div>
156
+
157
+ <div class="method-description">
158
+
159
+
160
+
161
+ </div>
162
+ </div>
163
+
164
+ <div id="attribute-i-id" class="method-detail">
165
+ <div class="method-heading attribute-method-heading">
166
+ <span class="method-name">id</span><span
167
+ class="attribute-access-type">[RW]</span>
168
+ </div>
169
+
170
+ <div class="method-description">
171
+
172
+
173
+
174
+ </div>
175
+ </div>
176
+
177
+ <div id="attribute-i-name" class="method-detail">
178
+ <div class="method-heading attribute-method-heading">
179
+ <span class="method-name">name</span><span
180
+ class="attribute-access-type">[RW]</span>
181
+ </div>
182
+
183
+ <div class="method-description">
184
+
185
+
186
+
187
+ </div>
188
+ </div>
189
+
190
+ <div id="attribute-i-parent_id" class="method-detail">
191
+ <div class="method-heading attribute-method-heading">
192
+ <span class="method-name">parent_id</span><span
193
+ class="attribute-access-type">[RW]</span>
194
+ </div>
195
+
196
+ <div class="method-description">
197
+
198
+
199
+
200
+ </div>
201
+ </div>
202
+
203
+ <div id="attribute-i-phone_number" class="method-detail">
204
+ <div class="method-heading attribute-method-heading">
205
+ <span class="method-name">phone_number</span><span
206
+ class="attribute-access-type">[RW]</span>
207
+ </div>
208
+
209
+ <div class="method-description">
210
+
211
+
212
+
213
+ </div>
214
+ </div>
215
+
216
+ <div id="attribute-i-use_department_contact_details" class="method-detail">
217
+ <div class="method-heading attribute-method-heading">
218
+ <span class="method-name">use_department_contact_details</span><span
219
+ class="attribute-access-type">[RW]</span>
220
+ </div>
221
+
222
+ <div class="method-description">
223
+
224
+
225
+
226
+ </div>
227
+ </div>
228
+
229
+ </section>
230
+
231
+
232
+
233
+ </section>
234
+ </main>
235
+
236
+
237
+ <footer id="validator-badges" role="contentinfo">
238
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
239
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.1.
240
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
241
+ </footer>
242
+
@@ -0,0 +1,370 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class AbsorbApi::LessonEnrollment - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "../";
11
+ </script>
12
+
13
+ <script src="../js/jquery.js"></script>
14
+ <script src="../js/darkfish.js"></script>
15
+
16
+ <link href="../css/fonts.css" rel="stylesheet">
17
+ <link href="../css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="class">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="../index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="../table_of_contents.html#pages">Pages</a>
31
+ <a href="../table_of_contents.html#classes">Classes</a>
32
+ <a href="../table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="class-metadata">
56
+
57
+ <div id="parent-class-section" class="nav-section">
58
+ <h3>Parent</h3>
59
+
60
+
61
+ <p class="link"><a href="Base.html">AbsorbApi::Base</a>
62
+
63
+ </div>
64
+
65
+
66
+
67
+
68
+ </div>
69
+ </nav>
70
+
71
+ <main role="main" aria-labelledby="class-AbsorbApi::LessonEnrollment">
72
+ <h1 id="class-AbsorbApi::LessonEnrollment" class="class">
73
+ class AbsorbApi::LessonEnrollment
74
+ </h1>
75
+
76
+ <section class="description">
77
+
78
+ </section>
79
+
80
+
81
+
82
+
83
+ <section id="5Buntitled-5D" class="documentation-section">
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+ <section class="attribute-method-details" class="method-section">
92
+ <header>
93
+ <h3>Attributes</h3>
94
+ </header>
95
+
96
+
97
+ <div id="attribute-i-attempts" class="method-detail">
98
+ <div class="method-heading attribute-method-heading">
99
+ <span class="method-name">attempts</span><span
100
+ class="attribute-access-type">[RW]</span>
101
+ </div>
102
+
103
+ <div class="method-description">
104
+
105
+
106
+
107
+ </div>
108
+ </div>
109
+
110
+ <div id="attribute-i-chapter_enrollment_id" class="method-detail">
111
+ <div class="method-heading attribute-method-heading">
112
+ <span class="method-name">chapter_enrollment_id</span><span
113
+ class="attribute-access-type">[RW]</span>
114
+ </div>
115
+
116
+ <div class="method-description">
117
+
118
+
119
+
120
+ </div>
121
+ </div>
122
+
123
+ <div id="attribute-i-chapter_id" class="method-detail">
124
+ <div class="method-heading attribute-method-heading">
125
+ <span class="method-name">chapter_id</span><span
126
+ class="attribute-access-type">[RW]</span>
127
+ </div>
128
+
129
+ <div class="method-description">
130
+
131
+
132
+
133
+ </div>
134
+ </div>
135
+
136
+ <div id="attribute-i-course_enrollment_id" class="method-detail">
137
+ <div class="method-heading attribute-method-heading">
138
+ <span class="method-name">course_enrollment_id</span><span
139
+ class="attribute-access-type">[RW]</span>
140
+ </div>
141
+
142
+ <div class="method-description">
143
+
144
+
145
+
146
+ </div>
147
+ </div>
148
+
149
+ <div id="attribute-i-date_completed" class="method-detail">
150
+ <div class="method-heading attribute-method-heading">
151
+ <span class="method-name">date_completed</span><span
152
+ class="attribute-access-type">[RW]</span>
153
+ </div>
154
+
155
+ <div class="method-description">
156
+
157
+
158
+
159
+ </div>
160
+ </div>
161
+
162
+ <div id="attribute-i-date_enrolled" class="method-detail">
163
+ <div class="method-heading attribute-method-heading">
164
+ <span class="method-name">date_enrolled</span><span
165
+ class="attribute-access-type">[RW]</span>
166
+ </div>
167
+
168
+ <div class="method-description">
169
+
170
+
171
+
172
+ </div>
173
+ </div>
174
+
175
+ <div id="attribute-i-date_started" class="method-detail">
176
+ <div class="method-heading attribute-method-heading">
177
+ <span class="method-name">date_started</span><span
178
+ class="attribute-access-type">[RW]</span>
179
+ </div>
180
+
181
+ <div class="method-description">
182
+
183
+
184
+
185
+ </div>
186
+ </div>
187
+
188
+ <div id="attribute-i-failures" class="method-detail">
189
+ <div class="method-heading attribute-method-heading">
190
+ <span class="method-name">failures</span><span
191
+ class="attribute-access-type">[RW]</span>
192
+ </div>
193
+
194
+ <div class="method-description">
195
+
196
+
197
+
198
+ </div>
199
+ </div>
200
+
201
+ <div id="attribute-i-full_name" class="method-detail">
202
+ <div class="method-heading attribute-method-heading">
203
+ <span class="method-name">full_name</span><span
204
+ class="attribute-access-type">[RW]</span>
205
+ </div>
206
+
207
+ <div class="method-description">
208
+
209
+
210
+
211
+ </div>
212
+ </div>
213
+
214
+ <div id="attribute-i-id" class="method-detail">
215
+ <div class="method-heading attribute-method-heading">
216
+ <span class="method-name">id</span><span
217
+ class="attribute-access-type">[RW]</span>
218
+ </div>
219
+
220
+ <div class="method-description">
221
+
222
+
223
+
224
+ </div>
225
+ </div>
226
+
227
+ <div id="attribute-i-last_attempt" class="method-detail">
228
+ <div class="method-heading attribute-method-heading">
229
+ <span class="method-name">last_attempt</span><span
230
+ class="attribute-access-type">[RW]</span>
231
+ </div>
232
+
233
+ <div class="method-description">
234
+
235
+
236
+
237
+ </div>
238
+ </div>
239
+
240
+ <div id="attribute-i-lesson_id" class="method-detail">
241
+ <div class="method-heading attribute-method-heading">
242
+ <span class="method-name">lesson_id</span><span
243
+ class="attribute-access-type">[RW]</span>
244
+ </div>
245
+
246
+ <div class="method-description">
247
+
248
+
249
+
250
+ </div>
251
+ </div>
252
+
253
+ <div id="attribute-i-name" class="method-detail">
254
+ <div class="method-heading attribute-method-heading">
255
+ <span class="method-name">name</span><span
256
+ class="attribute-access-type">[RW]</span>
257
+ </div>
258
+
259
+ <div class="method-description">
260
+
261
+
262
+
263
+ </div>
264
+ </div>
265
+
266
+ <div id="attribute-i-progress" class="method-detail">
267
+ <div class="method-heading attribute-method-heading">
268
+ <span class="method-name">progress</span><span
269
+ class="attribute-access-type">[RW]</span>
270
+ </div>
271
+
272
+ <div class="method-description">
273
+
274
+
275
+
276
+ </div>
277
+ </div>
278
+
279
+ <div id="attribute-i-score" class="method-detail">
280
+ <div class="method-heading attribute-method-heading">
281
+ <span class="method-name">score</span><span
282
+ class="attribute-access-type">[RW]</span>
283
+ </div>
284
+
285
+ <div class="method-description">
286
+
287
+
288
+
289
+ </div>
290
+ </div>
291
+
292
+ <div id="attribute-i-session_id" class="method-detail">
293
+ <div class="method-heading attribute-method-heading">
294
+ <span class="method-name">session_id</span><span
295
+ class="attribute-access-type">[RW]</span>
296
+ </div>
297
+
298
+ <div class="method-description">
299
+
300
+
301
+
302
+ </div>
303
+ </div>
304
+
305
+ <div id="attribute-i-status" class="method-detail">
306
+ <div class="method-heading attribute-method-heading">
307
+ <span class="method-name">status</span><span
308
+ class="attribute-access-type">[RW]</span>
309
+ </div>
310
+
311
+ <div class="method-description">
312
+
313
+
314
+
315
+ </div>
316
+ </div>
317
+
318
+ <div id="attribute-i-time_spent" class="method-detail">
319
+ <div class="method-heading attribute-method-heading">
320
+ <span class="method-name">time_spent</span><span
321
+ class="attribute-access-type">[RW]</span>
322
+ </div>
323
+
324
+ <div class="method-description">
325
+
326
+
327
+
328
+ </div>
329
+ </div>
330
+
331
+ <div id="attribute-i-type" class="method-detail">
332
+ <div class="method-heading attribute-method-heading">
333
+ <span class="method-name">type</span><span
334
+ class="attribute-access-type">[RW]</span>
335
+ </div>
336
+
337
+ <div class="method-description">
338
+
339
+
340
+
341
+ </div>
342
+ </div>
343
+
344
+ <div id="attribute-i-user_id" class="method-detail">
345
+ <div class="method-heading attribute-method-heading">
346
+ <span class="method-name">user_id</span><span
347
+ class="attribute-access-type">[RW]</span>
348
+ </div>
349
+
350
+ <div class="method-description">
351
+
352
+
353
+
354
+ </div>
355
+ </div>
356
+
357
+ </section>
358
+
359
+
360
+
361
+ </section>
362
+ </main>
363
+
364
+
365
+ <footer id="validator-badges" role="contentinfo">
366
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
367
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.1.
368
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
369
+ </footer>
370
+