absorb_api 0.2.0 → 0.9.1

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 (84) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +866 -0
  3. data/.ruby-version +1 -0
  4. data/CODE_OF_CONDUCT.md +46 -0
  5. data/Gemfile +3 -10
  6. data/README.md +0 -2
  7. data/Rakefile +3 -1
  8. data/absorb_api.gemspec +30 -16
  9. data/bin/console +11 -5
  10. data/doc/AbsorbApi.html +33 -64
  11. data/doc/AbsorbApi/Api.html +358 -0
  12. data/doc/AbsorbApi/Authorize.html +263 -0
  13. data/doc/AbsorbApi/Category.html +3 -2
  14. data/doc/AbsorbApi/Certificate.html +3 -2
  15. data/doc/AbsorbApi/Chapter.html +3 -2
  16. data/doc/AbsorbApi/Collection.html +3 -2
  17. data/doc/AbsorbApi/Configuration.html +3 -28
  18. data/doc/AbsorbApi/Course.html +3 -71
  19. data/doc/AbsorbApi/CourseEnrollment.html +6 -58
  20. data/doc/AbsorbApi/Create.html +164 -0
  21. data/doc/AbsorbApi/Curriculum.html +3 -2
  22. data/doc/AbsorbApi/Department.html +4 -14
  23. data/doc/AbsorbApi/Lesson.html +3 -2
  24. data/doc/AbsorbApi/LessonEnrollment.html +3 -2
  25. data/doc/AbsorbApi/Prerequisite.html +3 -2
  26. data/doc/AbsorbApi/Record.html +360 -0
  27. data/doc/AbsorbApi/Relations.html +2 -196
  28. data/doc/AbsorbApi/Relations/ClassMethods.html +197 -0
  29. data/doc/AbsorbApi/Resource.html +3 -2
  30. data/doc/AbsorbApi/ResourceNotFound.html +2 -1
  31. data/doc/AbsorbApi/Role.html +3 -2
  32. data/doc/AbsorbApi/RouteNotFound.html +2 -1
  33. data/doc/AbsorbApi/SessionSchedule.html +3 -2
  34. data/doc/AbsorbApi/Tag.html +4 -14
  35. data/doc/AbsorbApi/User.html +85 -35
  36. data/doc/AbsorbApi/ValidationError.html +2 -1
  37. data/doc/AbsorbApi/Where.html +162 -0
  38. data/doc/CODE_OF_CONDUCT_md.html +196 -0
  39. data/doc/Gemfile.html +8 -8
  40. data/doc/Gemfile_lock.html +57 -29
  41. data/doc/Icon/r.html +96 -0
  42. data/doc/LICENSE_txt.html +6 -1
  43. data/doc/Object.html +159 -0
  44. data/doc/README_md.html +6 -3
  45. data/doc/Rakefile.html +7 -2
  46. data/doc/absorb_api_gemspec.html +24 -7
  47. data/doc/bin/setup.html +6 -1
  48. data/doc/created.rid +34 -30
  49. data/doc/css/fonts.css +6 -6
  50. data/doc/index.html +19 -4
  51. data/doc/js/darkfish.js +7 -7
  52. data/doc/js/search_index.js +1 -1
  53. data/doc/js/search_index.js.gz +0 -0
  54. data/doc/js/searcher.js +1 -0
  55. data/doc/js/searcher.js.gz +0 -0
  56. data/doc/table_of_contents.html +118 -31
  57. data/lib/absorb_api.rb +43 -29
  58. data/lib/absorb_api/api.rb +69 -5
  59. data/lib/absorb_api/authorize.rb +37 -7
  60. data/lib/absorb_api/category.rb +3 -1
  61. data/lib/absorb_api/certificate.rb +5 -2
  62. data/lib/absorb_api/chapter.rb +3 -1
  63. data/lib/absorb_api/collection.rb +2 -19
  64. data/lib/absorb_api/configuration.rb +14 -12
  65. data/lib/absorb_api/course.rb +11 -25
  66. data/lib/absorb_api/course_enrollment.rb +13 -26
  67. data/lib/absorb_api/create.rb +19 -0
  68. data/lib/absorb_api/curriculum.rb +11 -2
  69. data/lib/absorb_api/department.rb +10 -4
  70. data/lib/absorb_api/lesson.rb +5 -2
  71. data/lib/absorb_api/lesson_enrollment.rb +8 -2
  72. data/lib/absorb_api/prerequisite.rb +5 -2
  73. data/lib/absorb_api/record.rb +58 -0
  74. data/lib/absorb_api/relations.rb +42 -40
  75. data/lib/absorb_api/resource.rb +3 -1
  76. data/lib/absorb_api/role.rb +3 -1
  77. data/lib/absorb_api/session_schedule.rb +6 -2
  78. data/lib/absorb_api/tag.rb +6 -3
  79. data/lib/absorb_api/user.rb +13 -29
  80. data/lib/absorb_api/version.rb +3 -1
  81. data/lib/absorb_api/where.rb +17 -0
  82. metadata +133 -8
  83. data/lib/absorb_api/base.rb +0 -12
  84. data/lib/absorb_api/orm.rb +0 -36
@@ -0,0 +1,196 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>CODE_OF_CONDUCT - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ var index_rel_prefix = "./";
12
+ </script>
13
+
14
+ <script src="./js/jquery.js"></script>
15
+ <script src="./js/darkfish.js"></script>
16
+
17
+ <link href="./css/fonts.css" rel="stylesheet">
18
+ <link href="./css/rdoc.css" rel="stylesheet">
19
+
20
+
21
+
22
+ <body id="top" role="document" class="file">
23
+ <nav role="navigation">
24
+ <div id="project-navigation">
25
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
26
+ <h2>
27
+ <a href="./index.html" rel="home">Home</a>
28
+ </h2>
29
+
30
+ <div id="table-of-contents-navigation">
31
+ <a href="./table_of_contents.html#pages">Pages</a>
32
+ <a href="./table_of_contents.html#classes">Classes</a>
33
+ <a href="./table_of_contents.html#methods">Methods</a>
34
+ </div>
35
+ </div>
36
+
37
+ <div id="search-section" role="search" class="project-section initially-hidden">
38
+ <form action="#" method="get" accept-charset="utf-8">
39
+ <div id="search-field-wrapper">
40
+ <input id="search-field" role="combobox" aria-label="Search"
41
+ aria-autocomplete="list" aria-controls="search-results"
42
+ type="text" name="search" placeholder="Search" spellcheck="false"
43
+ title="Type to search, Up and Down to navigate, Enter to load">
44
+ </div>
45
+
46
+ <ul id="search-results" aria-label="Search Results"
47
+ aria-busy="false" aria-expanded="false"
48
+ aria-atomic="false" class="initially-hidden"></ul>
49
+ </form>
50
+ </div>
51
+
52
+ </div>
53
+
54
+
55
+ <div class="nav-section">
56
+ <h3>Table of Contents</h3>
57
+
58
+ <ul class="link-list" role="directory">
59
+ <li><a href="#label-Contributor+Covenant+Code+of+Conduct">Contributor Covenant Code of Conduct</a>
60
+ <li><a href="#label-Our+Pledge">Our Pledge</a>
61
+ <li><a href="#label-Our+Standards">Our Standards</a>
62
+ <li><a href="#label-Our+Responsibilities">Our Responsibilities</a>
63
+ <li><a href="#label-Scope">Scope</a>
64
+ <li><a href="#label-Enforcement">Enforcement</a>
65
+ <li><a href="#label-Attribution">Attribution</a>
66
+ </ul>
67
+ </div>
68
+
69
+
70
+ <div id="project-metadata">
71
+ <div id="fileindex-section" class="nav-section">
72
+ <h3>Pages</h3>
73
+
74
+ <ul class="link-list">
75
+
76
+ <li><a href="./CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
77
+
78
+ <li><a href="./Gemfile.html">Gemfile</a>
79
+
80
+ <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
81
+
82
+ <li><a href="./Icon
83
+
84
+ <li><a href="./LICENSE_txt.html">LICENSE</a>
85
+
86
+ <li><a href="./README_md.html">README</a>
87
+
88
+ <li><a href="./Rakefile.html">Rakefile</a>
89
+
90
+ <li><a href="./absorb_api_gemspec.html">absorb_api.gemspec</a>
91
+
92
+ <li><a href="./bin/setup.html">setup</a>
93
+
94
+ </ul>
95
+ </div>
96
+
97
+ </div>
98
+ </nav>
99
+
100
+ <main role="main" aria-label="Page CODE_OF_CONDUCT.md">
101
+
102
+ <h1 id="label-Contributor+Covenant+Code+of+Conduct">Contributor Covenant Code of Conduct<span><a href="#label-Contributor+Covenant+Code+of+Conduct">&para;</a> <a href="#top">&uarr;</a></span></h1>
103
+
104
+ <h2 id="label-Our+Pledge">Our Pledge<span><a href="#label-Our+Pledge">&para;</a> <a href="#top">&uarr;</a></span></h2>
105
+
106
+ <p>In the interest of fostering an open and welcoming environment, we as
107
+ contributors and maintainers pledge to making participation in our project
108
+ and our community a harassment-free experience for everyone, regardless of
109
+ age, body size, disability, ethnicity, gender identity and expression,
110
+ level of experience, nationality, personal appearance, race, religion, or
111
+ sexual identity and orientation.</p>
112
+
113
+ <h2 id="label-Our+Standards">Our Standards<span><a href="#label-Our+Standards">&para;</a> <a href="#top">&uarr;</a></span></h2>
114
+
115
+ <p>Examples of behavior that contributes to creating a positive environment
116
+ include:</p>
117
+ <ul><li>
118
+ <p>Using welcoming and inclusive language</p>
119
+ </li><li>
120
+ <p>Being respectful of differing viewpoints and experiences</p>
121
+ </li><li>
122
+ <p>Gracefully accepting constructive criticism</p>
123
+ </li><li>
124
+ <p>Focusing on what is best for the community</p>
125
+ </li><li>
126
+ <p>Showing empathy towards other community members</p>
127
+ </li></ul>
128
+
129
+ <p>Examples of unacceptable behavior by participants include:</p>
130
+ <ul><li>
131
+ <p>The use of sexualized language or imagery and unwelcome sexual attention or
132
+ advances</p>
133
+ </li><li>
134
+ <p>Trolling, insulting/derogatory comments, and personal or political attacks</p>
135
+ </li><li>
136
+ <p>Public or private harassment</p>
137
+ </li><li>
138
+ <p>Publishing others&#39; private information, such as a physical or
139
+ electronic address, without explicit permission</p>
140
+ </li><li>
141
+ <p>Other conduct which could reasonably be considered inappropriate in a
142
+ professional setting</p>
143
+ </li></ul>
144
+
145
+ <h2 id="label-Our+Responsibilities">Our Responsibilities<span><a href="#label-Our+Responsibilities">&para;</a> <a href="#top">&uarr;</a></span></h2>
146
+
147
+ <p>Project maintainers are responsible for clarifying the standards of
148
+ acceptable behavior and are expected to take appropriate and fair
149
+ corrective action in response to any instances of unacceptable behavior.</p>
150
+
151
+ <p>Project maintainers have the right and responsibility to remove, edit, or
152
+ reject comments, commits, code, wiki edits, issues, and other contributions
153
+ that are not aligned to this Code of Conduct, or to ban temporarily or
154
+ permanently any contributor for other behaviors that they deem
155
+ inappropriate, threatening, offensive, or harmful.</p>
156
+
157
+ <h2 id="label-Scope">Scope<span><a href="#label-Scope">&para;</a> <a href="#top">&uarr;</a></span></h2>
158
+
159
+ <p>This Code of Conduct applies both within project spaces and in public
160
+ spaces when an individual is representing the project or its community.
161
+ Examples of representing a project or community include using an official
162
+ project e-mail address, posting via an official social media account, or
163
+ acting as an appointed representative at an online or offline event.
164
+ Representation of a project may be further defined and clarified by project
165
+ maintainers.</p>
166
+
167
+ <h2 id="label-Enforcement">Enforcement<span><a href="#label-Enforcement">&para;</a> <a href="#top">&uarr;</a></span></h2>
168
+
169
+ <p>Instances of abusive, harassing, or otherwise unacceptable behavior may be
170
+ reported by contacting the project team at npezza93@gmail.com. The project
171
+ team will review and investigate all complaints, and will respond in a way
172
+ that it deems appropriate to the circumstances. The project team is
173
+ obligated to maintain confidentiality with regard to the reporter of an
174
+ incident. Further details of specific enforcement policies may be posted
175
+ separately.</p>
176
+
177
+ <p>Project maintainers who do not follow or enforce the Code of Conduct in
178
+ good faith may face temporary or permanent repercussions as determined by
179
+ other members of the project&#39;s leadership.</p>
180
+
181
+ <h2 id="label-Attribution">Attribution<span><a href="#label-Attribution">&para;</a> <a href="#top">&uarr;</a></span></h2>
182
+
183
+ <p>This Code of Conduct is adapted from the <a
184
+ href="http://contributor-covenant.org">Contributor Covenant</a>, version
185
+ 1.4, available at <a
186
+ href="http://contributor-covenant.org/version/1/4/">contributor-covenant.org/version/1/4</a></p>
187
+ </main>
188
+
189
+
190
+
191
+ <footer id="validator-badges" role="contentinfo">
192
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
193
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
194
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
195
+ </footer>
196
+
@@ -8,6 +8,7 @@
8
8
 
9
9
  <script type="text/javascript">
10
10
  var rdoc_rel_prefix = "./";
11
+ var index_rel_prefix = "./";
11
12
  </script>
12
13
 
13
14
  <script src="./js/jquery.js"></script>
@@ -58,10 +59,14 @@
58
59
 
59
60
  <ul class="link-list">
60
61
 
62
+ <li><a href="./CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
63
+
61
64
  <li><a href="./Gemfile.html">Gemfile</a>
62
65
 
63
66
  <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
64
67
 
68
+ <li><a href="./Icon
69
+
65
70
  <li><a href="./LICENSE_txt.html">LICENSE</a>
66
71
 
67
72
  <li><a href="./README_md.html">README</a>
@@ -80,21 +85,16 @@
80
85
 
81
86
  <main role="main" aria-label="Page Gemfile">
82
87
 
83
- <p>source &#39;<a href="https://rubygems.org">rubygems.org</a>&#39;</p>
84
-
85
- <p># Specify your gem&#39;s dependencies in <a
86
- href="absorb_api_gemspec.html">absorb_api.gemspec</a> gemspec</p>
88
+ <p>source “<a href="https://rubygems.org">rubygems.org</a>”</p>
87
89
 
88
- <p>gem &#39;faraday&#39; gem &#39;typhoeus&#39; gem &#39;json&#39; gem
89
- &#39;faraday_middleware&#39; gem &#39;activesupport&#39; gem
90
- &#39;activemodel&#39;</p>
90
+ <p>gemspec</p>
91
91
  </main>
92
92
 
93
93
 
94
94
 
95
95
  <footer id="validator-badges" role="contentinfo">
96
96
  <p><a href="http://validator.w3.org/check/referer">Validate</a>
97
- <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.1.
97
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
98
98
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
99
99
  </footer>
100
100
 
@@ -8,6 +8,7 @@
8
8
 
9
9
  <script type="text/javascript">
10
10
  var rdoc_rel_prefix = "./";
11
+ var index_rel_prefix = "./";
11
12
  </script>
12
13
 
13
14
  <script src="./js/jquery.js"></script>
@@ -58,10 +59,14 @@
58
59
 
59
60
  <ul class="link-list">
60
61
 
62
+ <li><a href="./CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
63
+
61
64
  <li><a href="./Gemfile.html">Gemfile</a>
62
65
 
63
66
  <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
64
67
 
68
+ <li><a href="./Icon
69
+
65
70
  <li><a href="./LICENSE_txt.html">LICENSE</a>
66
71
 
67
72
  <li><a href="./README_md.html">README</a>
@@ -84,39 +89,66 @@
84
89
 
85
90
  <pre>remote: .
86
91
  specs:
87
- absorb_api (0.1.6)</pre>
92
+ absorb_api (0.9.0)
93
+ activemodel
94
+ activesupport
95
+ faraday
96
+ faraday_middleware
97
+ json
98
+ typhoeus</pre>
88
99
 
89
100
  <p>GEM</p>
90
101
 
91
102
  <pre>remote: https://rubygems.org/
92
103
  specs:
93
- activemodel (4.2.5)
94
- activesupport (= 4.2.5)
95
- builder (~&gt; 3.1)
96
- activesupport (4.2.5)
104
+ activemodel (5.1.2)
105
+ activesupport (= 5.1.2)
106
+ activesupport (5.1.2)
107
+ concurrent-ruby (~&gt; 1.0, &gt;= 1.0.2)
97
108
  i18n (~&gt; 0.7)
98
- json (~&gt; 1.7, &gt;= 1.7.7)
99
109
  minitest (~&gt; 5.1)
100
- thread_safe (~&gt; 0.3, &gt;= 0.3.4)
101
110
  tzinfo (~&gt; 1.1)
102
- builder (3.2.2)
103
- ethon (0.8.1)
111
+ ast (2.3.0)
112
+ coderay (1.1.1)
113
+ concurrent-ruby (1.0.5)
114
+ ethon (0.10.1)
104
115
  ffi (&gt;= 1.3.0)
105
- faraday (0.9.2)
116
+ faraday (0.12.1)
106
117
  multipart-post (&gt;= 1.2, &lt; 3)
107
- faraday_middleware (0.10.0)
108
- faraday (&gt;= 0.7.4, &lt; 0.10)
109
- ffi (1.9.10)
110
- i18n (0.7.0)
111
- json (1.8.3)
112
- minitest (5.8.4)
118
+ faraday_middleware (0.11.0.1)
119
+ faraday (&gt;= 0.7.4, &lt; 1.0)
120
+ ffi (1.9.18)
121
+ i18n (0.8.6)
122
+ json (2.1.0)
123
+ method_source (0.8.2)
124
+ minitest (5.10.2)
113
125
  multipart-post (2.0.0)
126
+ parallel (1.11.2)
127
+ parser (2.4.0.0)
128
+ ast (~&gt; 2.2)
129
+ powerpack (0.1.1)
130
+ pry (0.10.4)
131
+ coderay (~&gt; 1.1.0)
132
+ method_source (~&gt; 0.8.1)
133
+ slop (~&gt; 3.4)
134
+ rainbow (2.2.2)
135
+ rake
114
136
  rake (10.5.0)
115
- thread_safe (0.3.5)
116
- typhoeus (1.0.1)
117
- ethon (&gt;= 0.8.0)
118
- tzinfo (1.2.2)
119
- thread_safe (~&gt; 0.1)</pre>
137
+ rubocop (0.49.1)
138
+ parallel (~&gt; 1.10)
139
+ parser (&gt;= 2.3.3.1, &lt; 3.0)
140
+ powerpack (~&gt; 0.1)
141
+ rainbow (&gt;= 1.99.1, &lt; 3.0)
142
+ ruby-progressbar (~&gt; 1.7)
143
+ unicode-display_width (~&gt; 1.0, &gt;= 1.0.1)
144
+ ruby-progressbar (1.8.1)
145
+ slop (3.6.0)
146
+ thread_safe (0.3.6)
147
+ typhoeus (1.1.2)
148
+ ethon (&gt;= 0.9.0)
149
+ tzinfo (1.2.3)
150
+ thread_safe (~&gt; 0.1)
151
+ unicode-display_width (1.2.1)</pre>
120
152
 
121
153
  <p>PLATFORMS</p>
122
154
 
@@ -126,25 +158,21 @@ specs:
126
158
  <p>DEPENDENCIES</p>
127
159
 
128
160
  <pre>absorb_api!
129
- activemodel
130
- activesupport
131
161
  bundler (~&gt; 1.11)
132
- faraday
133
- faraday_middleware
134
- json
162
+ pry
135
163
  rake (~&gt; 10.0)
136
- typhoeus</pre>
164
+ rubocop</pre>
137
165
 
138
166
  <p>BUNDLED WITH</p>
139
167
 
140
- <pre>1.11.2</pre>
168
+ <pre>1.15.1</pre>
141
169
  </main>
142
170
 
143
171
 
144
172
 
145
173
  <footer id="validator-badges" role="contentinfo">
146
174
  <p><a href="http://validator.w3.org/check/referer">Validate</a>
147
- <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.1.
175
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
148
176
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
149
177
  </footer>
150
178
 
@@ -0,0 +1,96 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>Icon
8
  - RDoc Documentation</title>
9
+
10
+ <script type="text/javascript">
11
+ var rdoc_rel_prefix = "./";
12
+ var index_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script src="./js/jquery.js"></script>
16
+ <script src="./js/darkfish.js"></script>
17
+
18
+ <link href="./css/fonts.css" rel="stylesheet">
19
+ <link href="./css/rdoc.css" rel="stylesheet">
20
+
21
+
22
+
23
+ <body id="top" role="document" class="file">
24
+ <nav role="navigation">
25
+ <div id="project-navigation">
26
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <h2>
28
+ <a href="./index.html" rel="home">Home</a>
29
+ </h2>
30
+
31
+ <div id="table-of-contents-navigation">
32
+ <a href="./table_of_contents.html#pages">Pages</a>
33
+ <a href="./table_of_contents.html#classes">Classes</a>
34
+ <a href="./table_of_contents.html#methods">Methods</a>
35
+ </div>
36
+ </div>
37
+
38
+ <div id="search-section" role="search" class="project-section initially-hidden">
39
+ <form action="#" method="get" accept-charset="utf-8">
40
+ <div id="search-field-wrapper">
41
+ <input id="search-field" role="combobox" aria-label="Search"
42
+ aria-autocomplete="list" aria-controls="search-results"
43
+ type="text" name="search" placeholder="Search" spellcheck="false"
44
+ title="Type to search, Up and Down to navigate, Enter to load">
45
+ </div>
46
+
47
+ <ul id="search-results" aria-label="Search Results"
48
+ aria-busy="false" aria-expanded="false"
49
+ aria-atomic="false" class="initially-hidden"></ul>
50
+ </form>
51
+ </div>
52
+
53
+ </div>
54
+
55
+
56
+
57
+ <div id="project-metadata">
58
+ <div id="fileindex-section" class="nav-section">
59
+ <h3>Pages</h3>
60
+
61
+ <ul class="link-list">
62
+
63
+ <li><a href="./CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
64
+
65
+ <li><a href="./Gemfile.html">Gemfile</a>
66
+
67
+ <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
68
+
69
+ <li><a href="./Icon
70
+
71
+ <li><a href="./LICENSE_txt.html">LICENSE</a>
72
+
73
+ <li><a href="./README_md.html">README</a>
74
+
75
+ <li><a href="./Rakefile.html">Rakefile</a>
76
+
77
+ <li><a href="./absorb_api_gemspec.html">absorb_api.gemspec</a>
78
+
79
+ <li><a href="./bin/setup.html">setup</a>
80
+
81
+ </ul>
82
+ </div>
83
+
84
+ </div>
85
+ </nav>
86
+
87
+ <main role="main" aria-label="Page Icon
88
+ </main>
89
+
90
+
91
+
92
+ <footer id="validator-badges" role="contentinfo">
93
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
94
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
95
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
96
+ </footer>
97
+