gnip_api 1.2.2 → 1.2.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +24 -3
- data/README.md +70 -33
- data/Rakefile +7 -0
- data/doc/rdoc/classes/Gnip/Activity.html +354 -0
- data/doc/rdoc/classes/Gnip/Actor.html +300 -0
- data/doc/rdoc/classes/Gnip/GnipData.html +154 -0
- data/doc/rdoc/classes/Gnip/Message.html +236 -0
- data/doc/rdoc/classes/Gnip/SystemMessage.html +190 -0
- data/doc/rdoc/classes/Gnip/TwitterComplianceMessage.html +194 -0
- data/doc/rdoc/classes/Gnip/UndefinedMessage.html +83 -0
- data/doc/rdoc/classes/Gnip/Url.html +194 -0
- data/doc/rdoc/classes/Gnip.html +95 -0
- data/doc/rdoc/classes/GnipApi/Adapter.html +287 -0
- data/doc/rdoc/classes/GnipApi/Configuration.html +194 -0
- data/doc/rdoc/classes/GnipApi/Endpoints.html +191 -0
- data/doc/rdoc/classes/GnipApi/Errors/Adapter/GnipSoftwareError.html +83 -0
- data/doc/rdoc/classes/GnipApi/Errors/Adapter/RateLimitError.html +83 -0
- data/doc/rdoc/classes/GnipApi/Errors/Adapter/RequestError.html +56 -0
- data/doc/rdoc/classes/GnipApi/Errors/Adapter.html +66 -0
- data/doc/rdoc/classes/GnipApi/Errors/Configuration/InvalidOutputFormat.html +83 -0
- data/doc/rdoc/classes/GnipApi/Errors/Configuration.html +58 -0
- data/doc/rdoc/classes/GnipApi/Errors/JsonParser/ParseError.html +56 -0
- data/doc/rdoc/classes/GnipApi/Errors/JsonParser.html +64 -0
- data/doc/rdoc/classes/GnipApi/Errors/MissingAdapter.html +83 -0
- data/doc/rdoc/classes/GnipApi/Errors/MissingCredentials.html +83 -0
- data/doc/rdoc/classes/GnipApi/Errors/PowerTrack/MissingRules.html +83 -0
- data/doc/rdoc/classes/GnipApi/Errors/PowerTrack/StreamDown.html +56 -0
- data/doc/rdoc/classes/GnipApi/Errors/PowerTrack.html +65 -0
- data/doc/rdoc/classes/GnipApi/Errors/Search/MissingParameters.html +83 -0
- data/doc/rdoc/classes/GnipApi/Errors/Search.html +64 -0
- data/doc/rdoc/classes/GnipApi/Errors.html +79 -0
- data/doc/rdoc/classes/GnipApi/JsonParser.html +101 -0
- data/doc/rdoc/classes/GnipApi/PowerTrack/Buffer.html +237 -0
- data/doc/rdoc/classes/GnipApi/PowerTrack/Rule.html +196 -0
- data/doc/rdoc/classes/GnipApi/PowerTrack/Rules.html +188 -0
- data/doc/rdoc/classes/GnipApi/PowerTrack/Stream.html +359 -0
- data/doc/rdoc/classes/GnipApi/PowerTrack.html +73 -0
- data/doc/rdoc/classes/GnipApi/Request.html +216 -0
- data/doc/rdoc/classes/GnipApi/Response.html +232 -0
- data/doc/rdoc/classes/GnipApi/Search.html +101 -0
- data/doc/rdoc/classes/GnipApi.html +252 -0
- data/doc/rdoc/created.rid +24 -0
- data/doc/rdoc/css/style.css +343 -0
- data/doc/rdoc/files/LICENSE_txt.html +73 -0
- data/doc/rdoc/files/README_md.html +299 -0
- data/doc/rdoc/files/lib/gnip_api/adapter_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/configuration_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/endpoints_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/errors_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/gnip/activity_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/gnip/actor_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/gnip/gnip_data_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/gnip/message_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/gnip/system_message_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/gnip/twitter_compliance_message_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/gnip/url_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/json_parser_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/power_track/buffer_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/power_track/rule_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/power_track/rules_rb.html +55 -0
- data/doc/rdoc/files/lib/gnip_api/power_track/stream_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/request_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/response_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api/search_rb.html +55 -0
- data/doc/rdoc/files/lib/gnip_api/version_rb.html +51 -0
- data/doc/rdoc/files/lib/gnip_api_rb.html +84 -0
- data/doc/rdoc/fr_class_index.html +92 -0
- data/doc/rdoc/fr_file_index.html +41 -0
- data/doc/rdoc/fr_method_index.html +4791 -0
- data/doc/rdoc/index.html +15 -0
- data/gnip_api.gemspec +3 -1
- data/lib/gnip_api/configuration.rb +18 -4
- data/lib/gnip_api/errors.rb +0 -1
- data/lib/gnip_api/power_track/buffer.rb +60 -14
- data/lib/gnip_api/power_track/stream.rb +52 -17
- data/lib/gnip_api/response.rb +3 -2
- data/lib/gnip_api/version.rb +1 -1
- data/spec/gnip_api/power_track/buffer_spec.rb +8 -0
- data/spec/gnip_api/response_spec.rb +16 -0
- data/spec/spec_helper.rb +1 -0
- metadata +97 -2
@@ -0,0 +1,343 @@
|
|
1
|
+
html, body {
|
2
|
+
height: 100%; }
|
3
|
+
|
4
|
+
body {
|
5
|
+
font-family: Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
|
6
|
+
font-size: 90%;
|
7
|
+
margin: 0;
|
8
|
+
padding: 0;
|
9
|
+
background: white;
|
10
|
+
color: black; }
|
11
|
+
|
12
|
+
#wrapper {
|
13
|
+
min-height: 100%;
|
14
|
+
height: auto !important;
|
15
|
+
height: 100%;
|
16
|
+
margin: 0 auto -43px; }
|
17
|
+
|
18
|
+
#footer-push {
|
19
|
+
height: 43px; }
|
20
|
+
|
21
|
+
div.header, #footer {
|
22
|
+
background: #eeeeee; }
|
23
|
+
|
24
|
+
#footer {
|
25
|
+
border-top: 1px solid silver;
|
26
|
+
margin-top: 12px;
|
27
|
+
padding: 0 2em;
|
28
|
+
line-height: 30px;
|
29
|
+
text-align: center;
|
30
|
+
font-variant: small-caps;
|
31
|
+
font-size: 95%; }
|
32
|
+
|
33
|
+
.clearing:after {
|
34
|
+
content: ".";
|
35
|
+
visibility: hidden;
|
36
|
+
height: 0;
|
37
|
+
display: block;
|
38
|
+
clear: both; }
|
39
|
+
* html .clearing {
|
40
|
+
height: 1px; }
|
41
|
+
.clearing *:first-child + html {
|
42
|
+
overflow: hidden; }
|
43
|
+
|
44
|
+
h1, h2, h3, h4, h5, h6 {
|
45
|
+
margin: 0;
|
46
|
+
font-weight: normal; }
|
47
|
+
|
48
|
+
a {
|
49
|
+
color: #0b3e71; }
|
50
|
+
a:hover {
|
51
|
+
background: #336699;
|
52
|
+
text-decoration: none;
|
53
|
+
color: #eeeeff; }
|
54
|
+
|
55
|
+
#diagram img {
|
56
|
+
border: 0; }
|
57
|
+
|
58
|
+
#description a, .method .description a, .header a {
|
59
|
+
color: #336699; }
|
60
|
+
#description a:hover, .method .description a:hover, .header a:hover {
|
61
|
+
color: #eeeeee; }
|
62
|
+
#description h1 a, #description h2 a, #description h3 a, #description h4 a, #description h5 a, #description h6 a, .method .description h1 a, .method .description h2 a, .method .description h3 a, .method .description h4 a, .method .description h5 a, .method .description h6 a, .header h1 a, .header h2 a, .header h3 a, .header h4 a, .header h5 a, .header h6 a {
|
63
|
+
color: #0b3e71; }
|
64
|
+
|
65
|
+
ol {
|
66
|
+
margin: 0;
|
67
|
+
padding: 0;
|
68
|
+
list-style: none; }
|
69
|
+
ol li {
|
70
|
+
margin-left: 0;
|
71
|
+
white-space: nowrap; }
|
72
|
+
ol li.other {
|
73
|
+
display: none; }
|
74
|
+
|
75
|
+
ol.expanded li.other {
|
76
|
+
display: list-item; }
|
77
|
+
|
78
|
+
table {
|
79
|
+
margin-bottom: 1em;
|
80
|
+
font-size: 1em;
|
81
|
+
border-collapse: collapse; }
|
82
|
+
table td, table th {
|
83
|
+
padding: 0.4em 0.8em; }
|
84
|
+
table thead {
|
85
|
+
background-color: #e8e8e8; }
|
86
|
+
table thead th {
|
87
|
+
font-variant: small-caps;
|
88
|
+
color: #666666; }
|
89
|
+
table tr {
|
90
|
+
border-bottom: 1px solid silver; }
|
91
|
+
|
92
|
+
#index a.show, div.header a.show {
|
93
|
+
text-decoration: underline;
|
94
|
+
font-style: italic;
|
95
|
+
color: #666666; }
|
96
|
+
#index a.show:after, div.header a.show:after {
|
97
|
+
content: " ..."; }
|
98
|
+
#index a.show:hover, div.header a.show:hover {
|
99
|
+
color: black;
|
100
|
+
background: #ffffee; }
|
101
|
+
|
102
|
+
#index {
|
103
|
+
font: 85%/1.2 Arial, Helvetica, sans-serif; }
|
104
|
+
#index a {
|
105
|
+
text-decoration: none; }
|
106
|
+
#index h1 {
|
107
|
+
padding: 0.2em 0.5em 0.1em;
|
108
|
+
background: #cccccc;
|
109
|
+
font: small-caps 1.2em Georgia, serif;
|
110
|
+
color: #333333;
|
111
|
+
border-bottom: 1px solid gray; }
|
112
|
+
#index form {
|
113
|
+
margin: 0;
|
114
|
+
padding: 0; }
|
115
|
+
#index form input {
|
116
|
+
margin: 0.4em 3px 0 0.4em;
|
117
|
+
width: 80%; }
|
118
|
+
#index form #search.untouched {
|
119
|
+
color: #777777; }
|
120
|
+
#index form .clear_button {
|
121
|
+
-moz-border-radius: 7px;
|
122
|
+
-webkit-border-radius: 7px;
|
123
|
+
background: #aaaaaa;
|
124
|
+
color: white;
|
125
|
+
padding: 0 5px 1px 5px;
|
126
|
+
cursor: pointer; }
|
127
|
+
#index ol {
|
128
|
+
padding: 0.4em 0.5em; }
|
129
|
+
#index ol li {
|
130
|
+
white-space: nowrap; }
|
131
|
+
#index #index-entries li a {
|
132
|
+
padding: 1px 2px; }
|
133
|
+
#index #index-entries.classes {
|
134
|
+
font-size: 1.1em; }
|
135
|
+
#index #index-entries.classes ol {
|
136
|
+
padding: 0; }
|
137
|
+
#index #index-entries.classes span.nodoc {
|
138
|
+
display: none; }
|
139
|
+
#index #index-entries.classes span.nodoc, #index #index-entries.classes a {
|
140
|
+
font-weight: bold; }
|
141
|
+
#index #index-entries.classes .parent {
|
142
|
+
font-weight: normal; }
|
143
|
+
#index #index-entries.methods li, #index #search-results.methods li {
|
144
|
+
margin-bottom: 0.2em; }
|
145
|
+
#index #index-entries.methods li a .method_name, #index #search-results.methods li a .method_name {
|
146
|
+
margin-right: 0.25em; }
|
147
|
+
#index #index-entries.methods li a .module_name, #index #search-results.methods li a .module_name {
|
148
|
+
color: #666666; }
|
149
|
+
#index #index-entries.methods li a:hover .module_name, #index #search-results.methods li a:hover .module_name {
|
150
|
+
color: #dddddd; }
|
151
|
+
|
152
|
+
#attribute-list .context-item-name {
|
153
|
+
font-weight: bold; }
|
154
|
+
|
155
|
+
div.header {
|
156
|
+
font-size: 80%;
|
157
|
+
padding: 0.5em 2%;
|
158
|
+
font-family: Arial, Helvetica, sans-serif;
|
159
|
+
border-bottom: 1px solid silver; }
|
160
|
+
div.header .name {
|
161
|
+
font-size: 1.6em;
|
162
|
+
font-family: Georgia, serif; }
|
163
|
+
div.header .name .type {
|
164
|
+
color: #666666;
|
165
|
+
font-size: 80%;
|
166
|
+
font-variant: small-caps; }
|
167
|
+
div.header h1.name {
|
168
|
+
font-size: 2.2em; }
|
169
|
+
div.header .paths, div.header .last-update, div.header .parent {
|
170
|
+
color: #666666; }
|
171
|
+
div.header .last-update .datetime {
|
172
|
+
color: #484848; }
|
173
|
+
div.header .parent {
|
174
|
+
margin-top: 0.3em; }
|
175
|
+
div.header .parent strong {
|
176
|
+
font-weight: normal;
|
177
|
+
color: #484848; }
|
178
|
+
|
179
|
+
#content {
|
180
|
+
padding: 12px 2%; }
|
181
|
+
div.class #content {
|
182
|
+
position: relative;
|
183
|
+
width: 72%; }
|
184
|
+
#content pre, #content .method .synopsis {
|
185
|
+
font: 14px Monaco, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace; }
|
186
|
+
#content pre {
|
187
|
+
color: black;
|
188
|
+
background: #eeeeee;
|
189
|
+
border: 1px solid silver;
|
190
|
+
padding: 0.5em 0.8em;
|
191
|
+
overflow: auto; }
|
192
|
+
#content p code, #content p tt, #content li code, #content li tt, #content dl code, #content dl tt {
|
193
|
+
font: 14px Monaco, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
|
194
|
+
background: #ffffe3;
|
195
|
+
padding: 2px 3px;
|
196
|
+
line-height: 1.4; }
|
197
|
+
#content h1 code, #content h1 tt, #content h2 code, #content h2 tt, #content h3 code, #content h3 tt, #content h4 code, #content h4 tt, #content h5 code, #content h5 tt, #content h6 code, #content h6 tt {
|
198
|
+
font-size: 1.1em; }
|
199
|
+
#content #text {
|
200
|
+
position: relative; }
|
201
|
+
#content #description p {
|
202
|
+
margin-top: 0.5em; }
|
203
|
+
#content #description h1, #content #description h2, #content #description h3, #content #description h4, #content #description h5, #content #description h6 {
|
204
|
+
font-family: Georgia, serif; }
|
205
|
+
#content #description h1 {
|
206
|
+
font-size: 2.2em;
|
207
|
+
margin-bottom: 0.2em;
|
208
|
+
border-bottom: 3px double #d8d8d8;
|
209
|
+
padding-bottom: 0.1em; }
|
210
|
+
#content #description h2 {
|
211
|
+
font-size: 1.8em;
|
212
|
+
color: #0e3062;
|
213
|
+
margin: 0.8em 0 0.3em 0; }
|
214
|
+
#content #description h3 {
|
215
|
+
font-size: 1.6em;
|
216
|
+
margin: 0.8em 0 0.3em 0;
|
217
|
+
color: #666666; }
|
218
|
+
#content #description h4 {
|
219
|
+
font-size: 1.4em;
|
220
|
+
margin: 0.8em 0 0.3em 0; }
|
221
|
+
#content #description h5 {
|
222
|
+
font-size: 1.2em;
|
223
|
+
margin: 0.8em 0 0.3em 0;
|
224
|
+
color: #0e3062; }
|
225
|
+
#content #description h6 {
|
226
|
+
font-size: 1em;
|
227
|
+
margin: 0.8em 0 0.3em 0;
|
228
|
+
color: #666666; }
|
229
|
+
#content #description ul, #content #description ol, #content .method .description ul, #content .method .description ol {
|
230
|
+
margin: 0.8em 0;
|
231
|
+
padding-left: 1.5em; }
|
232
|
+
#content #description ol, #content .method .description ol {
|
233
|
+
list-style: decimal; }
|
234
|
+
#content #description ol li, #content .method .description ol li {
|
235
|
+
white-space: normal; }
|
236
|
+
#content table.rdoc-list {
|
237
|
+
border-collapse: collapse;
|
238
|
+
border-spacing: 0; }
|
239
|
+
#content table.rdoc-list tr {
|
240
|
+
background-color: white; }
|
241
|
+
#content table.rdoc-list tr:nth-child(2n) {
|
242
|
+
background-color: #f8f8f8; }
|
243
|
+
#content table.rdoc-list td.label {
|
244
|
+
font-weight: bold; }
|
245
|
+
#content table.rdoc-list td {
|
246
|
+
border: 1px solid #ddd;
|
247
|
+
padding: 6px 13px; }
|
248
|
+
|
249
|
+
#method-list {
|
250
|
+
position: absolute;
|
251
|
+
top: 0px;
|
252
|
+
right: -33%;
|
253
|
+
width: 28%;
|
254
|
+
background: #eeeeee;
|
255
|
+
border: 1px solid silver;
|
256
|
+
padding: 0.4em 1%;
|
257
|
+
overflow: hidden; }
|
258
|
+
#method-list h2 {
|
259
|
+
font-size: 1.3em; }
|
260
|
+
#method-list h3 {
|
261
|
+
font-variant: small-caps;
|
262
|
+
text-transform: capitalize;
|
263
|
+
font-family: Georgia, serif;
|
264
|
+
color: #666666;
|
265
|
+
font-size: 1.1em; }
|
266
|
+
#method-list ol {
|
267
|
+
padding: 0 0 0.5em 0.5em; }
|
268
|
+
|
269
|
+
#context {
|
270
|
+
border-top: 1px dashed silver;
|
271
|
+
margin-top: 1em;
|
272
|
+
margin-bottom: 1em; }
|
273
|
+
|
274
|
+
#context h2, #section h2 {
|
275
|
+
font: small-caps 1.2em Georgia, serif;
|
276
|
+
color: #444444;
|
277
|
+
margin: 1em 0 0.2em 0; }
|
278
|
+
|
279
|
+
#methods .method {
|
280
|
+
border: 1px solid silver;
|
281
|
+
margin-top: 0.5em;
|
282
|
+
background: #eeeeee; }
|
283
|
+
#methods .method .synopsis {
|
284
|
+
color: black;
|
285
|
+
background: silver;
|
286
|
+
padding: 0.2em 1em; }
|
287
|
+
#methods .method .synopsis .name {
|
288
|
+
font-weight: bold; }
|
289
|
+
#methods .method .synopsis a {
|
290
|
+
text-decoration: none; }
|
291
|
+
#methods .method .description {
|
292
|
+
padding: 0 1em; }
|
293
|
+
#methods .method .description pre {
|
294
|
+
background: #f8f8f8; }
|
295
|
+
#methods .method .source {
|
296
|
+
margin: 0.5em 0; }
|
297
|
+
#methods .method .source-toggle {
|
298
|
+
font-size: 85%;
|
299
|
+
margin-left: 1em; }
|
300
|
+
#methods .public-class {
|
301
|
+
background: #ffffe4; }
|
302
|
+
#methods .public-instance .synopsis {
|
303
|
+
color: #eeeeee;
|
304
|
+
background: #336699; }
|
305
|
+
|
306
|
+
#content .method .source pre, #content pre.ruby, #methods .method .description pre.ruby {
|
307
|
+
background: #262626;
|
308
|
+
color: #ffdead;
|
309
|
+
margin: 1em;
|
310
|
+
padding: 0.5em;
|
311
|
+
border: 1px dashed #999999;
|
312
|
+
overflow: auto; }
|
313
|
+
#content .method .source pre .ruby-constant, #content pre.ruby .ruby-constant, #methods .method .description pre.ruby .ruby-constant {
|
314
|
+
color: #7fffd4;
|
315
|
+
background: transparent; }
|
316
|
+
#content .method .source pre .ruby-keyword, #content pre.ruby .ruby-keyword, #methods .method .description pre.ruby .ruby-keyword {
|
317
|
+
color: aqua;
|
318
|
+
background: transparent; }
|
319
|
+
#content .method .source pre .ruby-ivar, #content pre.ruby .ruby-ivar, #methods .method .description pre.ruby .ruby-ivar {
|
320
|
+
color: #eedd82;
|
321
|
+
background: transparent; }
|
322
|
+
#content .method .source pre .ruby-operator, #content pre.ruby .ruby-operator, #methods .method .description pre.ruby .ruby-operator {
|
323
|
+
color: #00ffee;
|
324
|
+
background: transparent; }
|
325
|
+
#content .method .source pre .ruby-identifier, #content pre.ruby .ruby-identifier, #methods .method .description pre.ruby .ruby-identifier {
|
326
|
+
color: #ffdead;
|
327
|
+
background: transparent; }
|
328
|
+
#content .method .source pre .ruby-string, #content pre.ruby .ruby-string, #methods .method .description pre.ruby .ruby-string {
|
329
|
+
color: #faa;
|
330
|
+
background: transparent; }
|
331
|
+
#content .method .source pre .ruby-node, #content pre.ruby .ruby-node, #methods .method .description pre.ruby .ruby-node {
|
332
|
+
color: #ffa07a;
|
333
|
+
background: transparent; }
|
334
|
+
#content .method .source pre .ruby-comment, #content pre.ruby .ruby-comment, #methods .method .description pre.ruby .ruby-comment {
|
335
|
+
color: #fdf;
|
336
|
+
font-weight: bold;
|
337
|
+
background: transparent; }
|
338
|
+
#content .method .source pre .ruby-regexp, #content pre.ruby .ruby-regexp, #methods .method .description pre.ruby .ruby-regexp {
|
339
|
+
color: #ffa07a;
|
340
|
+
background: transparent; }
|
341
|
+
#content .method .source pre .ruby-value, #content pre.ruby .ruby-value, #methods .method .description pre.ruby .ruby-value {
|
342
|
+
color: #7fffd4;
|
343
|
+
background: transparent; }
|
@@ -0,0 +1,73 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
2
|
+
<html lang='en'>
|
3
|
+
<head>
|
4
|
+
<title>LICENSE.txt</title>
|
5
|
+
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
|
6
|
+
<link href='../css/style.css' media='screen' rel='stylesheet' type='text/css'>
|
7
|
+
<script type='text/javascript'>
|
8
|
+
function popupCode(url) {
|
9
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
10
|
+
}
|
11
|
+
|
12
|
+
function toggleCode(id) {
|
13
|
+
var code = document.getElementById(id)
|
14
|
+
|
15
|
+
code.style.display = code.style.display != 'block' ? 'block' : 'none'
|
16
|
+
return true
|
17
|
+
}
|
18
|
+
|
19
|
+
// Make codeblocks hidden by default
|
20
|
+
document.writeln('<' + 'style type="text/css">.method .source pre { display: none }<\/style>')
|
21
|
+
</script>
|
22
|
+
</head>
|
23
|
+
<body class='page'>
|
24
|
+
<div class='file' id='wrapper'>
|
25
|
+
<div class='header'>
|
26
|
+
<h1 class='name'>LICENSE.txt
|
27
|
+
</h1>
|
28
|
+
<div class='paths'>
|
29
|
+
LICENSE.txt
|
30
|
+
</div>
|
31
|
+
<div class='last-update'>
|
32
|
+
Last Update:
|
33
|
+
<span class='datetime'>2015-06-11 15:42:19 -0300</span>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
<div id='content'>
|
37
|
+
<div id='text'>
|
38
|
+
<div id='description'>
|
39
|
+
<p>Copyright © 2015 Rayko</p>
|
40
|
+
|
41
|
+
<p>MIT License</p>
|
42
|
+
|
43
|
+
<p>Permission is hereby granted, free of charge, to any person obtaining a
|
44
|
+
copy of this software and associated documentation files (the “Software”),
|
45
|
+
to deal in the Software without restriction, including without limitation
|
46
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
47
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
48
|
+
Software is furnished to do so, subject to the following conditions:</p>
|
49
|
+
|
50
|
+
<p>The above copyright notice and this permission notice shall be included in
|
51
|
+
all copies or substantial portions of the Software.</p>
|
52
|
+
|
53
|
+
<p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
54
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
55
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
56
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
57
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
58
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
59
|
+
DEALINGS IN THE SOFTWARE.</p>
|
60
|
+
</div>
|
61
|
+
<div id='context'>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
</div>
|
65
|
+
</div>
|
66
|
+
|
67
|
+
<div id='footer-push'></div>
|
68
|
+
</div>
|
69
|
+
<div id='footer'>
|
70
|
+
<a href="https://github.com/rdoc/hanna-nouveau"><strong>Hanna Nouveau</strong> RDoc template</a>
|
71
|
+
</div>
|
72
|
+
</body>
|
73
|
+
</html>
|