basecamp3 0.1.3

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 (89) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +2 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +65 -0
  8. data/Rakefile +6 -0
  9. data/basecamp3.gemspec +38 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/docs/Basecamp3.html +367 -0
  13. data/docs/Basecamp3/Campfire.html +901 -0
  14. data/docs/Basecamp3/CampfireLine.html +1025 -0
  15. data/docs/Basecamp3/Comment.html +1284 -0
  16. data/docs/Basecamp3/Concerns.html +117 -0
  17. data/docs/Basecamp3/Concerns/Bucketable.html +211 -0
  18. data/docs/Basecamp3/Concerns/Commentable.html +285 -0
  19. data/docs/Basecamp3/Concerns/Creatorable.html +209 -0
  20. data/docs/Basecamp3/Concerns/Parentable.html +211 -0
  21. data/docs/Basecamp3/Concerns/Recordingable.html +189 -0
  22. data/docs/Basecamp3/Concerns/Recordingable/ClassMethods.html +236 -0
  23. data/docs/Basecamp3/Document.html +1262 -0
  24. data/docs/Basecamp3/Forward.html +1070 -0
  25. data/docs/Basecamp3/Inbox.html +840 -0
  26. data/docs/Basecamp3/Message.html +1262 -0
  27. data/docs/Basecamp3/MessageBoard.html +840 -0
  28. data/docs/Basecamp3/MessageType.html +1160 -0
  29. data/docs/Basecamp3/Model.html +236 -0
  30. data/docs/Basecamp3/Person.html +1288 -0
  31. data/docs/Basecamp3/Project.html +1280 -0
  32. data/docs/Basecamp3/Question.html +1050 -0
  33. data/docs/Basecamp3/QuestionAnswer.html +887 -0
  34. data/docs/Basecamp3/Questionnaire.html +840 -0
  35. data/docs/Basecamp3/Request.html +933 -0
  36. data/docs/Basecamp3/ResponseParser.html +303 -0
  37. data/docs/Basecamp3/Schedule.html +840 -0
  38. data/docs/Basecamp3/ScheduleEntry.html +1560 -0
  39. data/docs/Basecamp3/Todo.html +1726 -0
  40. data/docs/Basecamp3/TodoList.html +1480 -0
  41. data/docs/Basecamp3/TodoSet.html +980 -0
  42. data/docs/Basecamp3/TypeMapper.html +329 -0
  43. data/docs/Basecamp3/Vault.html +1514 -0
  44. data/docs/_index.html +415 -0
  45. data/docs/class_list.html +51 -0
  46. data/docs/css/common.css +1 -0
  47. data/docs/css/full_list.css +58 -0
  48. data/docs/css/style.css +492 -0
  49. data/docs/file.README.html +157 -0
  50. data/docs/file_list.html +56 -0
  51. data/docs/frames.html +17 -0
  52. data/docs/index.html +157 -0
  53. data/docs/js/app.js +248 -0
  54. data/docs/js/full_list.js +216 -0
  55. data/docs/js/jquery.js +4 -0
  56. data/docs/method_list.html +1875 -0
  57. data/docs/top-level-namespace.html +110 -0
  58. data/lib/basecamp3.rb +61 -0
  59. data/lib/basecamp3/concerns/bucketable.rb +17 -0
  60. data/lib/basecamp3/concerns/commentable.rb +15 -0
  61. data/lib/basecamp3/concerns/creatorable.rb +16 -0
  62. data/lib/basecamp3/concerns/parentable.rb +17 -0
  63. data/lib/basecamp3/concerns/recordingable.rb +22 -0
  64. data/lib/basecamp3/model.rb +23 -0
  65. data/lib/basecamp3/models/campfire.rb +42 -0
  66. data/lib/basecamp3/models/campfire_line.rb +52 -0
  67. data/lib/basecamp3/models/comment.rb +65 -0
  68. data/lib/basecamp3/models/document.rb +71 -0
  69. data/lib/basecamp3/models/forward.rb +40 -0
  70. data/lib/basecamp3/models/inbox.rb +31 -0
  71. data/lib/basecamp3/models/message.rb +73 -0
  72. data/lib/basecamp3/models/message_board.rb +31 -0
  73. data/lib/basecamp3/models/message_type.rb +68 -0
  74. data/lib/basecamp3/models/person.rb +46 -0
  75. data/lib/basecamp3/models/project.rb +70 -0
  76. data/lib/basecamp3/models/question.rb +43 -0
  77. data/lib/basecamp3/models/question_answer.rb +35 -0
  78. data/lib/basecamp3/models/questionnaire.rb +31 -0
  79. data/lib/basecamp3/models/schedule.rb +31 -0
  80. data/lib/basecamp3/models/schedule_entry.rb +93 -0
  81. data/lib/basecamp3/models/todo.rb +108 -0
  82. data/lib/basecamp3/models/todo_list.rb +77 -0
  83. data/lib/basecamp3/models/todo_set.rb +33 -0
  84. data/lib/basecamp3/models/vault.rb +79 -0
  85. data/lib/basecamp3/request.rb +163 -0
  86. data/lib/basecamp3/response_parser.rb +44 -0
  87. data/lib/basecamp3/type_mapper.rb +53 -0
  88. data/lib/basecamp3/version.rb +3 -0
  89. metadata +202 -0
@@ -0,0 +1,209 @@
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
+ Module: Basecamp3::Concerns::Creatorable
8
+
9
+ &mdash; Documentation by YARD 0.9.9
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 = "Basecamp3::Concerns::Creatorable";
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?1"></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 (C)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../../Basecamp3.html" title="Basecamp3 (module)">Basecamp3</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Concerns.html" title="Basecamp3::Concerns (module)">Concerns</a></span></span>
41
+ &raquo;
42
+ <span class="title">Creatorable</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
+ <div id="content"><h1>Module: Basecamp3::Concerns::Creatorable
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+ <dl>
78
+ <dt>Included in:</dt>
79
+ <dd><span class='object_link'><a href="../Campfire.html" title="Basecamp3::Campfire (class)">Basecamp3::Campfire</a></span>, <span class='object_link'><a href="../CampfireLine.html" title="Basecamp3::CampfireLine (class)">Basecamp3::CampfireLine</a></span>, <span class='object_link'><a href="../Comment.html" title="Basecamp3::Comment (class)">Basecamp3::Comment</a></span>, <span class='object_link'><a href="../Document.html" title="Basecamp3::Document (class)">Document</a></span>, <span class='object_link'><a href="../Forward.html" title="Basecamp3::Forward (class)">Forward</a></span>, <span class='object_link'><a href="../Inbox.html" title="Basecamp3::Inbox (class)">Inbox</a></span>, <span class='object_link'><a href="../Message.html" title="Basecamp3::Message (class)">Message</a></span>, <span class='object_link'><a href="../MessageBoard.html" title="Basecamp3::MessageBoard (class)">MessageBoard</a></span>, <span class='object_link'><a href="../Question.html" title="Basecamp3::Question (class)">Question</a></span>, <span class='object_link'><a href="../QuestionAnswer.html" title="Basecamp3::QuestionAnswer (class)">QuestionAnswer</a></span>, <span class='object_link'><a href="../Questionnaire.html" title="Basecamp3::Questionnaire (class)">Questionnaire</a></span>, <span class='object_link'><a href="../Schedule.html" title="Basecamp3::Schedule (class)">Schedule</a></span>, <span class='object_link'><a href="../ScheduleEntry.html" title="Basecamp3::ScheduleEntry (class)">ScheduleEntry</a></span>, <span class='object_link'><a href="../Todo.html" title="Basecamp3::Todo (class)">Todo</a></span>, <span class='object_link'><a href="../TodoList.html" title="Basecamp3::TodoList (class)">TodoList</a></span>, <span class='object_link'><a href="../TodoSet.html" title="Basecamp3::TodoSet (class)">TodoSet</a></span>, <span class='object_link'><a href="../Vault.html" title="Basecamp3::Vault (class)">Vault</a></span></dd>
80
+ </dl>
81
+
82
+
83
+
84
+ <dl>
85
+ <dt>Defined in:</dt>
86
+ <dd>lib/basecamp3/concerns/creatorable.rb</dd>
87
+ </dl>
88
+
89
+ </div>
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+ <h2>
100
+ Instance Method Summary
101
+ <small><a href="#" class="summary_toggle">collapse</a></small>
102
+ </h2>
103
+
104
+ <ul class="summary">
105
+
106
+ <li class="public ">
107
+ <span class="summary_signature">
108
+
109
+ <a href="#creator-instance_method" title="#creator (instance method)">#<strong>creator</strong> &#x21d2; Basecamp3::Person </a>
110
+
111
+
112
+
113
+ </span>
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+ <span class="summary_desc"><div class='inline'>
124
+ <p>Returns the creator.</p>
125
+ </div></span>
126
+
127
+ </li>
128
+
129
+
130
+ </ul>
131
+
132
+
133
+
134
+
135
+ <div id="instance_method_details" class="method_details_list">
136
+ <h2>Instance Method Details</h2>
137
+
138
+
139
+ <div class="method_details first">
140
+ <h3 class="signature first" id="creator-instance_method">
141
+
142
+ #<strong>creator</strong> &#x21d2; <tt><span class='object_link'><a href="../Person.html" title="Basecamp3::Person (class)">Basecamp3::Person</a></span></tt>
143
+
144
+
145
+
146
+
147
+
148
+ </h3><div class="docstring">
149
+ <div class="discussion">
150
+
151
+ <p>Returns the creator.</p>
152
+
153
+
154
+ </div>
155
+ </div>
156
+ <div class="tags">
157
+
158
+ <p class="tag_title">Returns:</p>
159
+ <ul class="return">
160
+
161
+ <li>
162
+
163
+
164
+ <span class='type'>(<tt><span class='object_link'><a href="../Person.html" title="Basecamp3::Person (class)">Basecamp3::Person</a></span></tt>)</span>
165
+
166
+
167
+
168
+ </li>
169
+
170
+ </ul>
171
+
172
+ </div><table class="source_code">
173
+ <tr>
174
+ <td>
175
+ <pre class="lines">
176
+
177
+
178
+ 9
179
+ 10
180
+ 11
181
+ 12
182
+ 13</pre>
183
+ </td>
184
+ <td>
185
+ <pre class="code"><span class="info file"># File 'lib/basecamp3/concerns/creatorable.rb', line 9</span>
186
+
187
+ <span class='kw'>def</span> <span class='id identifier rubyid_creator'>creator</span>
188
+ <span class='kw'>return</span> <span class='kw'>nil</span> <span class='kw'>if</span> <span class='ivar'>@creator</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span>
189
+
190
+ <span class='ivar'>@mapped_creator</span> <span class='op'>||=</span> <span class='const'><span class='object_link'><a href="../../Basecamp3.html" title="Basecamp3 (module)">Basecamp3</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Person.html" title="Basecamp3::Person (class)">Person</a></span></span><span class='period'>.</span><span class='id identifier rubyid_new'><span class='object_link'><a href="../Model.html#initialize-instance_method" title="Basecamp3::Model#initialize (method)">new</a></span></span><span class='lparen'>(</span><span class='ivar'>@creator</span><span class='rparen'>)</span>
191
+ <span class='kw'>end</span></pre>
192
+ </td>
193
+ </tr>
194
+ </table>
195
+ </div>
196
+
197
+ </div>
198
+
199
+ </div>
200
+
201
+ <div id="footer">
202
+ Generated on Tue May 9 15:32:16 2017 by
203
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
204
+ 0.9.9 (ruby-2.2.2).
205
+ </div>
206
+
207
+ </div>
208
+ </body>
209
+ </html>
@@ -0,0 +1,211 @@
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
+ Module: Basecamp3::Concerns::Parentable
8
+
9
+ &mdash; Documentation by YARD 0.9.9
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 = "Basecamp3::Concerns::Parentable";
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?1"></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 (P)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../../Basecamp3.html" title="Basecamp3 (module)">Basecamp3</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Concerns.html" title="Basecamp3::Concerns (module)">Concerns</a></span></span>
41
+ &raquo;
42
+ <span class="title">Parentable</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
+ <div id="content"><h1>Module: Basecamp3::Concerns::Parentable
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+ <dl>
78
+ <dt>Included in:</dt>
79
+ <dd><span class='object_link'><a href="../CampfireLine.html" title="Basecamp3::CampfireLine (class)">Basecamp3::CampfireLine</a></span>, <span class='object_link'><a href="../Comment.html" title="Basecamp3::Comment (class)">Basecamp3::Comment</a></span>, <span class='object_link'><a href="../Document.html" title="Basecamp3::Document (class)">Document</a></span>, <span class='object_link'><a href="../Forward.html" title="Basecamp3::Forward (class)">Forward</a></span>, <span class='object_link'><a href="../Message.html" title="Basecamp3::Message (class)">Message</a></span>, <span class='object_link'><a href="../Question.html" title="Basecamp3::Question (class)">Question</a></span>, <span class='object_link'><a href="../QuestionAnswer.html" title="Basecamp3::QuestionAnswer (class)">QuestionAnswer</a></span>, <span class='object_link'><a href="../ScheduleEntry.html" title="Basecamp3::ScheduleEntry (class)">ScheduleEntry</a></span>, <span class='object_link'><a href="../Todo.html" title="Basecamp3::Todo (class)">Todo</a></span>, <span class='object_link'><a href="../TodoList.html" title="Basecamp3::TodoList (class)">TodoList</a></span>, <span class='object_link'><a href="../Vault.html" title="Basecamp3::Vault (class)">Vault</a></span></dd>
80
+ </dl>
81
+
82
+
83
+
84
+ <dl>
85
+ <dt>Defined in:</dt>
86
+ <dd>lib/basecamp3/concerns/parentable.rb</dd>
87
+ </dl>
88
+
89
+ </div>
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+ <h2>
100
+ Instance Method Summary
101
+ <small><a href="#" class="summary_toggle">collapse</a></small>
102
+ </h2>
103
+
104
+ <ul class="summary">
105
+
106
+ <li class="public ">
107
+ <span class="summary_signature">
108
+
109
+ <a href="#parent-instance_method" title="#parent (instance method)">#<strong>parent</strong> &#x21d2; Basecamp3::Model </a>
110
+
111
+
112
+
113
+ </span>
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+ <span class="summary_desc"><div class='inline'>
124
+ <p>Returns the parent.</p>
125
+ </div></span>
126
+
127
+ </li>
128
+
129
+
130
+ </ul>
131
+
132
+
133
+
134
+
135
+ <div id="instance_method_details" class="method_details_list">
136
+ <h2>Instance Method Details</h2>
137
+
138
+
139
+ <div class="method_details first">
140
+ <h3 class="signature first" id="parent-instance_method">
141
+
142
+ #<strong>parent</strong> &#x21d2; <tt><span class='object_link'><a href="../Model.html" title="Basecamp3::Model (class)">Basecamp3::Model</a></span></tt>
143
+
144
+
145
+
146
+
147
+
148
+ </h3><div class="docstring">
149
+ <div class="discussion">
150
+
151
+ <p>Returns the parent.</p>
152
+
153
+
154
+ </div>
155
+ </div>
156
+ <div class="tags">
157
+
158
+ <p class="tag_title">Returns:</p>
159
+ <ul class="return">
160
+
161
+ <li>
162
+
163
+
164
+ <span class='type'>(<tt><span class='object_link'><a href="../Model.html" title="Basecamp3::Model (class)">Basecamp3::Model</a></span></tt>)</span>
165
+
166
+
167
+
168
+ </li>
169
+
170
+ </ul>
171
+
172
+ </div><table class="source_code">
173
+ <tr>
174
+ <td>
175
+ <pre class="lines">
176
+
177
+
178
+ 9
179
+ 10
180
+ 11
181
+ 12
182
+ 13
183
+ 14</pre>
184
+ </td>
185
+ <td>
186
+ <pre class="code"><span class="info file"># File 'lib/basecamp3/concerns/parentable.rb', line 9</span>
187
+
188
+ <span class='kw'>def</span> <span class='id identifier rubyid_parent'>parent</span>
189
+ <span class='kw'>return</span> <span class='kw'>nil</span> <span class='kw'>if</span> <span class='ivar'>@parent</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span>
190
+
191
+ <span class='id identifier rubyid_klass'>klass</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="../TypeMapper.html" title="Basecamp3::TypeMapper (class)">TypeMapper</a></span></span><span class='period'>.</span><span class='id identifier rubyid_map'><span class='object_link'><a href="../TypeMapper.html#map-class_method" title="Basecamp3::TypeMapper.map (method)">map</a></span></span><span class='lparen'>(</span><span class='ivar'>@parent</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>type</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span>
192
+ <span class='ivar'>@mapped_parent</span> <span class='op'>||=</span> <span class='id identifier rubyid_klass'>klass</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='ivar'>@bucket</span><span class='rparen'>)</span>
193
+ <span class='kw'>end</span></pre>
194
+ </td>
195
+ </tr>
196
+ </table>
197
+ </div>
198
+
199
+ </div>
200
+
201
+ </div>
202
+
203
+ <div id="footer">
204
+ Generated on Tue May 9 15:32:16 2017 by
205
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
206
+ 0.9.9 (ruby-2.2.2).
207
+ </div>
208
+
209
+ </div>
210
+ </body>
211
+ </html>
@@ -0,0 +1,189 @@
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
+ Module: Basecamp3::Concerns::Recordingable
8
+
9
+ &mdash; Documentation by YARD 0.9.9
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 = "Basecamp3::Concerns::Recordingable";
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?1"></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 (R)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../../Basecamp3.html" title="Basecamp3 (module)">Basecamp3</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Concerns.html" title="Basecamp3::Concerns (module)">Concerns</a></span></span>
41
+ &raquo;
42
+ <span class="title">Recordingable</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
+ <div id="content"><h1>Module: Basecamp3::Concerns::Recordingable
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+ <dl>
78
+ <dt>Included in:</dt>
79
+ <dd><span class='object_link'><a href="../Comment.html" title="Basecamp3::Comment (class)">Basecamp3::Comment</a></span>, <span class='object_link'><a href="../Document.html" title="Basecamp3::Document (class)">Document</a></span>, <span class='object_link'><a href="../Forward.html" title="Basecamp3::Forward (class)">Forward</a></span>, <span class='object_link'><a href="../Message.html" title="Basecamp3::Message (class)">Message</a></span>, <span class='object_link'><a href="../ScheduleEntry.html" title="Basecamp3::ScheduleEntry (class)">ScheduleEntry</a></span>, <span class='object_link'><a href="../Todo.html" title="Basecamp3::Todo (class)">Todo</a></span>, <span class='object_link'><a href="../TodoList.html" title="Basecamp3::TodoList (class)">TodoList</a></span></dd>
80
+ </dl>
81
+
82
+
83
+
84
+ <dl>
85
+ <dt>Defined in:</dt>
86
+ <dd>lib/basecamp3/concerns/recordingable.rb</dd>
87
+ </dl>
88
+
89
+ </div>
90
+
91
+ <h2>Defined Under Namespace</h2>
92
+ <p class="children">
93
+
94
+
95
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="Recordingable/ClassMethods.html" title="Basecamp3::Concerns::Recordingable::ClassMethods (module)">ClassMethods</a></span>
96
+
97
+
98
+
99
+
100
+ </p>
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+ <h2>
110
+ Class Method Summary
111
+ <small><a href="#" class="summary_toggle">collapse</a></small>
112
+ </h2>
113
+
114
+ <ul class="summary">
115
+
116
+ <li class="public ">
117
+ <span class="summary_signature">
118
+
119
+ <a href="#included-class_method" title="included (class method)">.<strong>included</strong>(base) &#x21d2; Object </a>
120
+
121
+
122
+
123
+ </span>
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+ <span class="summary_desc"><div class='inline'></div></span>
134
+
135
+ </li>
136
+
137
+
138
+ </ul>
139
+
140
+
141
+
142
+
143
+ <div id="class_method_details" class="method_details_list">
144
+ <h2>Class Method Details</h2>
145
+
146
+
147
+ <div class="method_details first">
148
+ <h3 class="signature first" id="included-class_method">
149
+
150
+ .<strong>included</strong>(base) &#x21d2; <tt>Object</tt>
151
+
152
+
153
+
154
+
155
+
156
+ </h3><table class="source_code">
157
+ <tr>
158
+ <td>
159
+ <pre class="lines">
160
+
161
+
162
+ 5
163
+ 6
164
+ 7</pre>
165
+ </td>
166
+ <td>
167
+ <pre class="code"><span class="info file"># File 'lib/basecamp3/concerns/recordingable.rb', line 5</span>
168
+
169
+ <span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_included'>included</span><span class='lparen'>(</span><span class='id identifier rubyid_base'>base</span><span class='rparen'>)</span>
170
+ <span class='id identifier rubyid_base'>base</span><span class='period'>.</span><span class='id identifier rubyid_extend'>extend</span><span class='lparen'>(</span><span class='const'><span class='object_link'><a href="Recordingable/ClassMethods.html" title="Basecamp3::Concerns::Recordingable::ClassMethods (module)">ClassMethods</a></span></span><span class='rparen'>)</span>
171
+ <span class='kw'>end</span></pre>
172
+ </td>
173
+ </tr>
174
+ </table>
175
+ </div>
176
+
177
+ </div>
178
+
179
+ </div>
180
+
181
+ <div id="footer">
182
+ Generated on Tue May 9 15:32:16 2017 by
183
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
184
+ 0.9.9 (ruby-2.2.2).
185
+ </div>
186
+
187
+ </div>
188
+ </body>
189
+ </html>