pb_and_j 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: be39026b33be34e8a2d585c3594ce52316670df3
4
+ data.tar.gz: 468f532fc69083a4261f3da1b382a1e4844e9c17
5
+ SHA512:
6
+ metadata.gz: caa4b3d975fa8b403caf025f8a1ce3b3adbea1d95269e72dda7c71119a238fea2bb2408d2fe7e323e41ae00bacf97dea1c0427b7cfdf5a087a1879f54137a044
7
+ data.tar.gz: f2f8d25d62c13e5f070842aa530e5ed388fe259e7e1433f297cce28cb9afbe12773a53291b3b11dbb3ce704f021db7a2fbd612f34df581f8b54eb4de00e1c0ca
data/lib/pb_and_j.rb ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+ require 'serving_seconds'
3
+
4
+ module PBAndJ; end
5
+
6
+ require_relative 'pb_and_j/progress_bar'
@@ -0,0 +1,133 @@
1
+ # frozen_string_literal: true
2
+ module PBAndJ
3
+ class ProgressBar
4
+ attr_reader(*[
5
+ :start_at,
6
+ :description,
7
+ :count,
8
+ :index,
9
+ :padding,
10
+ :width,
11
+ ])
12
+
13
+ def initialize(desc, count, pad: 0, width: 80, show: true, stream: STDOUT)
14
+ @description = desc || ''
15
+ @count = count || 0
16
+ @padding = pad || 0
17
+ @width = width || 80
18
+ @stream = stream || STDOUT
19
+ @show = !!show
20
+ @index = 0
21
+ @message = ''
22
+
23
+ raise "Count must be greater than 0" if @count < 1
24
+ end
25
+
26
+ def start(now = Time.now)
27
+ @start_at = now
28
+ @index = 0
29
+ reset now
30
+ print
31
+ end
32
+
33
+ def tick(index = nil, finish = nil)
34
+ start unless defined?(@start_at) && @start_at
35
+ reset
36
+ @index = index || @index + 1
37
+ @finish = finish if finish
38
+ print
39
+ end
40
+
41
+ def stop(now = Time.now)
42
+ reset now
43
+ print
44
+ stream.puts if show?
45
+ end
46
+
47
+ def show?
48
+ @show
49
+ end
50
+
51
+ def message
52
+ @message ||= label + marks + suffix
53
+ end
54
+
55
+ private
56
+
57
+ def stream
58
+ @stream
59
+ end
60
+
61
+ def reset(now = Time.now)
62
+ @finished = now
63
+ @finish = nil
64
+ @message = nil
65
+ @suffix = nil
66
+ end
67
+
68
+ def print
69
+ stream.print "\r" + message if show?
70
+ end
71
+
72
+ def label
73
+ @label ||= "#{description.ljust(padding)}: #{formatted_start} "
74
+ end
75
+
76
+ def formatted_start
77
+ @formatted_start ||= start_at.strftime '%H:%M:%S'
78
+ end
79
+
80
+ def finish(current = @finished)
81
+ return @finish if @finish
82
+
83
+ time = current - start_at
84
+ return @finish = current if time < 0.001
85
+ avg = time / @index.to_f
86
+
87
+ @finish = start_at + @count * avg
88
+ end
89
+
90
+ def marks
91
+ mark = @index <= @count ? '=' : '>'
92
+ progress = '|' + mark * current_marks
93
+
94
+ if @index < @count
95
+ progress += '>' + ' ' * (max_length - current_marks - 1)
96
+ end
97
+
98
+ progress += '|'
99
+ end
100
+
101
+ def max_length
102
+ return nil unless @width
103
+ return @max_length if defined?(@max_length)
104
+ @max_length ||= width - label.length - suffix.length - 2
105
+ end
106
+
107
+ def current_marks
108
+ (max_length * percentage).to_i
109
+ end
110
+
111
+ def percentage
112
+ [@index / @count.to_f, 1].min
113
+ end
114
+
115
+ def suffix
116
+ @suffix ||=
117
+ " #{formatted_finish}" +
118
+ " #{humanize_seconds(finish - start_at)} #{humanize_duration}"
119
+ end
120
+
121
+ def formatted_finish
122
+ finish.strftime '%H:%M:%S'
123
+ end
124
+
125
+ def humanize_duration
126
+ humanize_seconds @finished - start_at
127
+ end
128
+
129
+ def humanize_seconds(seconds)
130
+ ServingSeconds.humanize(seconds, 1).rjust 5
131
+ end
132
+ end
133
+ end
data/license/gplv3.md ADDED
@@ -0,0 +1,650 @@
1
+ Preamble
2
+ ==================================================
3
+
4
+ The GNU General Public License is a free, copyleft license for
5
+ software and other kinds of works.
6
+
7
+ The licenses for most software and other practical works are designed
8
+ to take away your freedom to share and change the works. By contrast,
9
+ the GNU General Public License is intended to guarantee your freedom to
10
+ share and change all versions of a program--to make sure it remains free
11
+ software for all its users. We, the Free Software Foundation, use the
12
+ GNU General Public License for most of our software; it applies also to
13
+ any other work released this way by its authors. You can apply it to
14
+ your programs, too.
15
+
16
+ When we speak of free software, we are referring to freedom, not
17
+ price. Our General Public Licenses are designed to make sure that you
18
+ have the freedom to distribute copies of free software (and charge for
19
+ them if you wish), that you receive source code or can get it if you
20
+ want it, that you can change the software or use pieces of it in new
21
+ free programs, and that you know you can do these things.
22
+
23
+ To protect your rights, we need to prevent others from denying you
24
+ these rights or asking you to surrender the rights. Therefore, you have
25
+ certain responsibilities if you distribute copies of the software, or if
26
+ you modify it: responsibilities to respect the freedom of others.
27
+
28
+ For example, if you distribute copies of such a program, whether
29
+ gratis or for a fee, you must pass on to the recipients the same
30
+ freedoms that you received. You must make sure that they, too, receive
31
+ or can get the source code. And you must show them these terms so they
32
+ know their rights.
33
+
34
+ Developers that use the GNU GPL protect your rights with two steps:
35
+ (1) assert copyright on the software, and (2) offer you this License
36
+ giving you legal permission to copy, distribute and/or modify it.
37
+
38
+ For the developers' and authors' protection, the GPL clearly explains
39
+ that there is no warranty for this free software. For both users' and
40
+ authors' sake, the GPL requires that modified versions be marked as
41
+ changed, so that their problems will not be attributed erroneously to
42
+ authors of previous versions.
43
+
44
+ Some devices are designed to deny users access to install or run
45
+ modified versions of the software inside them, although the manufacturer
46
+ can do so. This is fundamentally incompatible with the aim of
47
+ protecting users' freedom to change the software. The systematic
48
+ pattern of such abuse occurs in the area of products for individuals to
49
+ use, which is precisely where it is most unacceptable. Therefore, we
50
+ have designed this version of the GPL to prohibit the practice for those
51
+ products. If such problems arise substantially in other domains, we
52
+ stand ready to extend this provision to those domains in future versions
53
+ of the GPL, as needed to protect the freedom of users.
54
+
55
+ Finally, every program is threatened constantly by software patents.
56
+ States should not allow patents to restrict development and use of
57
+ software on general-purpose computers, but in those that do, we wish to
58
+ avoid the special danger that patents applied to a free program could
59
+ make it effectively proprietary. To prevent this, the GPL assures that
60
+ patents cannot be used to render the program non-free.
61
+
62
+ The precise terms and conditions for copying, distribution and
63
+ modification follow.
64
+
65
+
66
+ TERMS AND CONDITIONS
67
+ ==================================================
68
+
69
+ 0. Definitions.
70
+ --------------------------------------------------
71
+
72
+ "This License" refers to version 3 of the GNU General Public License.
73
+
74
+ "Copyright" also means copyright-like laws that apply to other kinds of
75
+ works, such as semiconductor masks.
76
+
77
+ "The Program" refers to any copyrightable work licensed under this
78
+ License. Each licensee is addressed as "you". "Licensees" and
79
+ "recipients" may be individuals or organizations.
80
+
81
+ To "modify" a work means to copy from or adapt all or part of the work
82
+ in a fashion requiring copyright permission, other than the making of an
83
+ exact copy. The resulting work is called a "modified version" of the
84
+ earlier work or a work "based on" the earlier work.
85
+
86
+ A "covered work" means either the unmodified Program or a work based
87
+ on the Program.
88
+
89
+ To "propagate" a work means to do anything with it that, without
90
+ permission, would make you directly or secondarily liable for
91
+ infringement under applicable copyright law, except executing it on a
92
+ computer or modifying a private copy. Propagation includes copying,
93
+ distribution (with or without modification), making available to the
94
+ public, and in some countries other activities as well.
95
+
96
+ To "convey" a work means any kind of propagation that enables other
97
+ parties to make or receive copies. Mere interaction with a user through
98
+ a computer network, with no transfer of a copy, is not conveying.
99
+
100
+ An interactive user interface displays "Appropriate Legal Notices"
101
+ to the extent that it includes a convenient and prominently visible
102
+ feature that (1) displays an appropriate copyright notice, and (2)
103
+ tells the user that there is no warranty for the work (except to the
104
+ extent that warranties are provided), that licensees may convey the
105
+ work under this License, and how to view a copy of this License. If
106
+ the interface presents a list of user commands or options, such as a
107
+ menu, a prominent item in the list meets this criterion.
108
+
109
+
110
+ 1. Source Code.
111
+ --------------------------------------------------
112
+
113
+ The "source code" for a work means the preferred form of the work
114
+ for making modifications to it. "Object code" means any non-source
115
+ form of a work.
116
+
117
+ A "Standard Interface" means an interface that either is an official
118
+ standard defined by a recognized standards body, or, in the case of
119
+ interfaces specified for a particular programming language, one that
120
+ is widely used among developers working in that language.
121
+
122
+ The "System Libraries" of an executable work include anything, other
123
+ than the work as a whole, that (a) is included in the normal form of
124
+ packaging a Major Component, but which is not part of that Major
125
+ Component, and (b) serves only to enable use of the work with that
126
+ Major Component, or to implement a Standard Interface for which an
127
+ implementation is available to the public in source code form. A
128
+ "Major Component", in this context, means a major essential component
129
+ (kernel, window system, and so on) of the specific operating system
130
+ (if any) on which the executable work runs, or a compiler used to
131
+ produce the work, or an object code interpreter used to run it.
132
+
133
+ The "Corresponding Source" for a work in object code form means all
134
+ the source code needed to generate, install, and (for an executable
135
+ work) run the object code and to modify the work, including scripts to
136
+ control those activities. However, it does not include the work's
137
+ System Libraries, or general-purpose tools or generally available free
138
+ programs which are used unmodified in performing those activities but
139
+ which are not part of the work. For example, Corresponding Source
140
+ includes interface definition files associated with source files for
141
+ the work, and the source code for shared libraries and dynamically
142
+ linked subprograms that the work is specifically designed to require,
143
+ such as by intimate data communication or control flow between those
144
+ subprograms and other parts of the work.
145
+
146
+ The Corresponding Source need not include anything that users
147
+ can regenerate automatically from other parts of the Corresponding
148
+ Source.
149
+
150
+ The Corresponding Source for a work in source code form is that
151
+ same work.
152
+
153
+
154
+ 2. Basic Permissions.
155
+ --------------------------------------------------
156
+
157
+ All rights granted under this License are granted for the term of
158
+ copyright on the Program, and are irrevocable provided the stated
159
+ conditions are met. This License explicitly affirms your unlimited
160
+ permission to run the unmodified Program. The output from running a
161
+ covered work is covered by this License only if the output, given its
162
+ content, constitutes a covered work. This License acknowledges your
163
+ rights of fair use or other equivalent, as provided by copyright law.
164
+
165
+ You may make, run and propagate covered works that you do not
166
+ convey, without conditions so long as your license otherwise remains
167
+ in force. You may convey covered works to others for the sole purpose
168
+ of having them make modifications exclusively for you, or provide you
169
+ with facilities for running those works, provided that you comply with
170
+ the terms of this License in conveying all material for which you do
171
+ not control copyright. Those thus making or running the covered works
172
+ for you must do so exclusively on your behalf, under your direction
173
+ and control, on terms that prohibit them from making any copies of
174
+ your copyrighted material outside their relationship with you.
175
+
176
+ Conveying under any other circumstances is permitted solely under
177
+ the conditions stated below. Sublicensing is not allowed; section 10
178
+ makes it unnecessary.
179
+
180
+
181
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
182
+ --------------------------------------------------
183
+
184
+ No covered work shall be deemed part of an effective technological
185
+ measure under any applicable law fulfilling obligations under article
186
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
187
+ similar laws prohibiting or restricting circumvention of such
188
+ measures.
189
+
190
+ When you convey a covered work, you waive any legal power to forbid
191
+ circumvention of technological measures to the extent such circumvention
192
+ is effected by exercising rights under this License with respect to
193
+ the covered work, and you disclaim any intention to limit operation or
194
+ modification of the work as a means of enforcing, against the work's
195
+ users, your or third parties' legal rights to forbid circumvention of
196
+ technological measures.
197
+
198
+
199
+ 4. Conveying Verbatim Copies.
200
+ --------------------------------------------------
201
+
202
+ You may convey verbatim copies of the Program's source code as you
203
+ receive it, in any medium, provided that you conspicuously and
204
+ appropriately publish on each copy an appropriate copyright notice;
205
+ keep intact all notices stating that this License and any
206
+ non-permissive terms added in accord with section 7 apply to the code;
207
+ keep intact all notices of the absence of any warranty; and give all
208
+ recipients a copy of this License along with the Program.
209
+
210
+ You may charge any price or no price for each copy that you convey,
211
+ and you may offer support or warranty protection for a fee.
212
+
213
+
214
+ 5. Conveying Modified Source Versions.
215
+ --------------------------------------------------
216
+
217
+ You may convey a work based on the Program, or the modifications to
218
+ produce it from the Program, in the form of source code under the
219
+ terms of section 4, provided that you also meet all of these conditions:
220
+
221
+ * a) The work must carry prominent notices stating that you modified
222
+ it, and giving a relevant date.
223
+
224
+ * b) The work must carry prominent notices stating that it is
225
+ released under this License and any conditions added under section
226
+ 7. This requirement modifies the requirement in section 4 to
227
+ "keep intact all notices".
228
+
229
+ * c) You must license the entire work, as a whole, under this
230
+ License to anyone who comes into possession of a copy. This
231
+ License will therefore apply, along with any applicable section 7
232
+ additional terms, to the whole of the work, and all its parts,
233
+ regardless of how they are packaged. This License gives no
234
+ permission to license the work in any other way, but it does not
235
+ invalidate such permission if you have separately received it.
236
+
237
+ * d) If the work has interactive user interfaces, each must display
238
+ Appropriate Legal Notices; however, if the Program has interactive
239
+ interfaces that do not display Appropriate Legal Notices, your
240
+ work need not make them do so.
241
+
242
+ A compilation of a covered work with other separate and independent
243
+ works, which are not by their nature extensions of the covered work,
244
+ and which are not combined with it such as to form a larger program,
245
+ in or on a volume of a storage or distribution medium, is called an
246
+ "aggregate" if the compilation and its resulting copyright are not
247
+ used to limit the access or legal rights of the compilation's users
248
+ beyond what the individual works permit. Inclusion of a covered work
249
+ in an aggregate does not cause this License to apply to the other
250
+ parts of the aggregate.
251
+
252
+
253
+ 6. Conveying Non-Source Forms.
254
+ --------------------------------------------------
255
+
256
+ You may convey a covered work in object code form under the terms
257
+ of sections 4 and 5, provided that you also convey the
258
+ machine-readable Corresponding Source under the terms of this License,
259
+ in one of these ways:
260
+
261
+ * a) Convey the object code in, or embodied in, a physical product
262
+ (including a physical distribution medium), accompanied by the
263
+ Corresponding Source fixed on a durable physical medium
264
+ customarily used for software interchange.
265
+
266
+ * b) Convey the object code in, or embodied in, a physical product
267
+ (including a physical distribution medium), accompanied by a
268
+ written offer, valid for at least three years and valid for as
269
+ long as you offer spare parts or customer support for that product
270
+ model, to give anyone who possesses the object code either (1) a
271
+ copy of the Corresponding Source for all the software in the
272
+ product that is covered by this License, on a durable physical
273
+ medium customarily used for software interchange, for a price no
274
+ more than your reasonable cost of physically performing this
275
+ conveying of source, or (2) access to copy the
276
+ Corresponding Source from a network server at no charge.
277
+
278
+ * c) Convey individual copies of the object code with a copy of the
279
+ written offer to provide the Corresponding Source. This
280
+ alternative is allowed only occasionally and noncommercially, and
281
+ only if you received the object code with such an offer, in accord
282
+ with subsection 6b.
283
+
284
+ * d) Convey the object code by offering access from a designated
285
+ place (gratis or for a charge), and offer equivalent access to the
286
+ Corresponding Source in the same way through the same place at no
287
+ further charge. You need not require recipients to copy the
288
+ Corresponding Source along with the object code. If the place to
289
+ copy the object code is a network server, the Corresponding Source
290
+ may be on a different server (operated by you or a third party)
291
+ that supports equivalent copying facilities, provided you maintain
292
+ clear directions next to the object code saying where to find the
293
+ Corresponding Source. Regardless of what server hosts the
294
+ Corresponding Source, you remain obligated to ensure that it is
295
+ available for as long as needed to satisfy these requirements.
296
+
297
+ * e) Convey the object code using peer-to-peer transmission, provided
298
+ you inform other peers where the object code and Corresponding
299
+ Source of the work are being offered to the general public at no
300
+ charge under subsection 6d.
301
+
302
+ A separable portion of the object code, whose source code is excluded
303
+ from the Corresponding Source as a System Library, need not be
304
+ included in conveying the object code work.
305
+
306
+ A "User Product" is either (1) a "consumer product", which means any
307
+ tangible personal property which is normally used for personal, family,
308
+ or household purposes, or (2) anything designed or sold for incorporation
309
+ into a dwelling. In determining whether a product is a consumer product,
310
+ doubtful cases shall be resolved in favor of coverage. For a particular
311
+ product received by a particular user, "normally used" refers to a
312
+ typical or common use of that class of product, regardless of the status
313
+ of the particular user or of the way in which the particular user
314
+ actually uses, or expects or is expected to use, the product. A product
315
+ is a consumer product regardless of whether the product has substantial
316
+ commercial, industrial or non-consumer uses, unless such uses represent
317
+ the only significant mode of use of the product.
318
+
319
+ "Installation Information" for a User Product means any methods,
320
+ procedures, authorization keys, or other information required to install
321
+ and execute modified versions of a covered work in that User Product from
322
+ a modified version of its Corresponding Source. The information must
323
+ suffice to ensure that the continued functioning of the modified object
324
+ code is in no case prevented or interfered with solely because
325
+ modification has been made.
326
+
327
+ If you convey an object code work under this section in, or with, or
328
+ specifically for use in, a User Product, and the conveying occurs as
329
+ part of a transaction in which the right of possession and use of the
330
+ User Product is transferred to the recipient in perpetuity or for a
331
+ fixed term (regardless of how the transaction is characterized), the
332
+ Corresponding Source conveyed under this section must be accompanied
333
+ by the Installation Information. But this requirement does not apply
334
+ if neither you nor any third party retains the ability to install
335
+ modified object code on the User Product (for example, the work has
336
+ been installed in ROM).
337
+
338
+ The requirement to provide Installation Information does not include a
339
+ requirement to continue to provide support service, warranty, or updates
340
+ for a work that has been modified or installed by the recipient, or for
341
+ the User Product in which it has been modified or installed. Access to a
342
+ network may be denied when the modification itself materially and
343
+ adversely affects the operation of the network or violates the rules and
344
+ protocols for communication across the network.
345
+
346
+ Corresponding Source conveyed, and Installation Information provided,
347
+ in accord with this section must be in a format that is publicly
348
+ documented (and with an implementation available to the public in
349
+ source code form), and must require no special password or key for
350
+ unpacking, reading or copying.
351
+
352
+
353
+ 7. Additional Terms.
354
+ --------------------------------------------------
355
+
356
+ "Additional permissions" are terms that supplement the terms of this
357
+ License by making exceptions from one or more of its conditions.
358
+ Additional permissions that are applicable to the entire Program shall
359
+ be treated as though they were included in this License, to the extent
360
+ that they are valid under applicable law. If additional permissions
361
+ apply only to part of the Program, that part may be used separately
362
+ under those permissions, but the entire Program remains governed by
363
+ this License without regard to the additional permissions.
364
+
365
+ When you convey a copy of a covered work, you may at your option
366
+ remove any additional permissions from that copy, or from any part of
367
+ it. (Additional permissions may be written to require their own
368
+ removal in certain cases when you modify the work.) You may place
369
+ additional permissions on material, added by you to a covered work,
370
+ for which you have or can give appropriate copyright permission.
371
+
372
+ Notwithstanding any other provision of this License, for material you
373
+ add to a covered work, you may (if authorized by the copyright holders of
374
+ that material) supplement the terms of this License with terms:
375
+
376
+ * a) Disclaiming warranty or limiting liability differently from the
377
+ terms of sections 15 and 16 of this License; or
378
+
379
+ * b) Requiring preservation of specified reasonable legal notices or
380
+ author attributions in that material or in the Appropriate Legal
381
+ Notices displayed by works containing it; or
382
+
383
+ * c) Prohibiting misrepresentation of the origin of that material, or
384
+ requiring that modified versions of such material be marked in
385
+ reasonable ways as different from the original version; or
386
+
387
+ * d) Limiting the use for publicity purposes of names of licensors or
388
+ authors of the material; or
389
+
390
+ * e) Declining to grant rights under trademark law for use of some
391
+ trade names, trademarks, or service marks; or
392
+
393
+ * f) Requiring indemnification of licensors and authors of that
394
+ material by anyone who conveys the material (or modified versions of
395
+ it) with contractual assumptions of liability to the recipient, for
396
+ any liability that these contractual assumptions directly impose on
397
+ those licensors and authors.
398
+
399
+ All other non-permissive additional terms are considered "further
400
+ restrictions" within the meaning of section 10. If the Program as you
401
+ received it, or any part of it, contains a notice stating that it is
402
+ governed by this License along with a term that is a further
403
+ restriction, you may remove that term. If a license document contains
404
+ a further restriction but permits relicensing or conveying under this
405
+ License, you may add to a covered work material governed by the terms
406
+ of that license document, provided that the further restriction does
407
+ not survive such relicensing or conveying.
408
+
409
+ If you add terms to a covered work in accord with this section, you
410
+ must place, in the relevant source files, a statement of the
411
+ additional terms that apply to those files, or a notice indicating
412
+ where to find the applicable terms.
413
+
414
+ Additional terms, permissive or non-permissive, may be stated in the
415
+ form of a separately written license, or stated as exceptions;
416
+ the above requirements apply either way.
417
+
418
+
419
+ 8. Termination.
420
+ --------------------------------------------------
421
+
422
+ You may not propagate or modify a covered work except as expressly
423
+ provided under this License. Any attempt otherwise to propagate or
424
+ modify it is void, and will automatically terminate your rights under
425
+ this License (including any patent licenses granted under the third
426
+ paragraph of section 11).
427
+
428
+ However, if you cease all violation of this License, then your
429
+ license from a particular copyright holder is reinstated (a)
430
+ provisionally, unless and until the copyright holder explicitly and
431
+ finally terminates your license, and (b) permanently, if the copyright
432
+ holder fails to notify you of the violation by some reasonable means
433
+ prior to 60 days after the cessation.
434
+
435
+ Moreover, your license from a particular copyright holder is
436
+ reinstated permanently if the copyright holder notifies you of the
437
+ violation by some reasonable means, this is the first time you have
438
+ received notice of violation of this License (for any work) from that
439
+ copyright holder, and you cure the violation prior to 30 days after
440
+ your receipt of the notice.
441
+
442
+ Termination of your rights under this section does not terminate the
443
+ licenses of parties who have received copies or rights from you under
444
+ this License. If your rights have been terminated and not permanently
445
+ reinstated, you do not qualify to receive new licenses for the same
446
+ material under section 10.
447
+
448
+
449
+ 9. Acceptance Not Required for Having Copies.
450
+ --------------------------------------------------
451
+
452
+ You are not required to accept this License in order to receive or
453
+ run a copy of the Program. Ancillary propagation of a covered work
454
+ occurring solely as a consequence of using peer-to-peer transmission
455
+ to receive a copy likewise does not require acceptance. However,
456
+ nothing other than this License grants you permission to propagate or
457
+ modify any covered work. These actions infringe copyright if you do
458
+ not accept this License. Therefore, by modifying or propagating a
459
+ covered work, you indicate your acceptance of this License to do so.
460
+
461
+
462
+ 10. Automatic Licensing of Downstream Recipients.
463
+ --------------------------------------------------
464
+
465
+ Each time you convey a covered work, the recipient automatically
466
+ receives a license from the original licensors, to run, modify and
467
+ propagate that work, subject to this License. You are not responsible
468
+ for enforcing compliance by third parties with this License.
469
+
470
+ An "entity transaction" is a transaction transferring control of an
471
+ organization, or substantially all assets of one, or subdividing an
472
+ organization, or merging organizations. If propagation of a covered
473
+ work results from an entity transaction, each party to that
474
+ transaction who receives a copy of the work also receives whatever
475
+ licenses to the work the party's predecessor in interest had or could
476
+ give under the previous paragraph, plus a right to possession of the
477
+ Corresponding Source of the work from the predecessor in interest, if
478
+ the predecessor has it or can get it with reasonable efforts.
479
+
480
+ You may not impose any further restrictions on the exercise of the
481
+ rights granted or affirmed under this License. For example, you may
482
+ not impose a license fee, royalty, or other charge for exercise of
483
+ rights granted under this License, and you may not initiate litigation
484
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
485
+ any patent claim is infringed by making, using, selling, offering for
486
+ sale, or importing the Program or any portion of it.
487
+
488
+
489
+ 11. Patents.
490
+ --------------------------------------------------
491
+
492
+ A "contributor" is a copyright holder who authorizes use under this
493
+ License of the Program or a work on which the Program is based. The
494
+ work thus licensed is called the contributor's "contributor version".
495
+
496
+ A contributor's "essential patent claims" are all patent claims
497
+ owned or controlled by the contributor, whether already acquired or
498
+ hereafter acquired, that would be infringed by some manner, permitted
499
+ by this License, of making, using, or selling its contributor version,
500
+ but do not include claims that would be infringed only as a
501
+ consequence of further modification of the contributor version. For
502
+ purposes of this definition, "control" includes the right to grant
503
+ patent sublicenses in a manner consistent with the requirements of
504
+ this License.
505
+
506
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
507
+ patent license under the contributor's essential patent claims, to
508
+ make, use, sell, offer for sale, import and otherwise run, modify and
509
+ propagate the contents of its contributor version.
510
+
511
+ In the following three paragraphs, a "patent license" is any express
512
+ agreement or commitment, however denominated, not to enforce a patent
513
+ (such as an express permission to practice a patent or covenant not to
514
+ sue for patent infringement). To "grant" such a patent license to a
515
+ party means to make such an agreement or commitment not to enforce a
516
+ patent against the party.
517
+
518
+ If you convey a covered work, knowingly relying on a patent license,
519
+ and the Corresponding Source of the work is not available for anyone
520
+ to copy, free of charge and under the terms of this License, through a
521
+ publicly available network server or other readily accessible means,
522
+ then you must either (1) cause the Corresponding Source to be so
523
+ available, or (2) arrange to deprive yourself of the benefit of the
524
+ patent license for this particular work, or (3) arrange, in a manner
525
+ consistent with the requirements of this License, to extend the patent
526
+ license to downstream recipients. "Knowingly relying" means you have
527
+ actual knowledge that, but for the patent license, your conveying the
528
+ covered work in a country, or your recipient's use of the covered work
529
+ in a country, would infringe one or more identifiable patents in that
530
+ country that you have reason to believe are valid.
531
+
532
+ If, pursuant to or in connection with a single transaction or
533
+ arrangement, you convey, or propagate by procuring conveyance of, a
534
+ covered work, and grant a patent license to some of the parties
535
+ receiving the covered work authorizing them to use, propagate, modify
536
+ or convey a specific copy of the covered work, then the patent license
537
+ you grant is automatically extended to all recipients of the covered
538
+ work and works based on it.
539
+
540
+ A patent license is "discriminatory" if it does not include within
541
+ the scope of its coverage, prohibits the exercise of, or is
542
+ conditioned on the non-exercise of one or more of the rights that are
543
+ specifically granted under this License. You may not convey a covered
544
+ work if you are a party to an arrangement with a third party that is
545
+ in the business of distributing software, under which you make payment
546
+ to the third party based on the extent of your activity of conveying
547
+ the work, and under which the third party grants, to any of the
548
+ parties who would receive the covered work from you, a discriminatory
549
+ patent license (a) in connection with copies of the covered work
550
+ conveyed by you (or copies made from those copies), or (b) primarily
551
+ for and in connection with specific products or compilations that
552
+ contain the covered work, unless you entered into that arrangement,
553
+ or that patent license was granted, prior to 28 March 2007.
554
+
555
+ Nothing in this License shall be construed as excluding or limiting
556
+ any implied license or other defenses to infringement that may
557
+ otherwise be available to you under applicable patent law.
558
+
559
+
560
+ 12. No Surrender of Others' Freedom.
561
+ --------------------------------------------------
562
+
563
+ If conditions are imposed on you (whether by court order, agreement or
564
+ otherwise) that contradict the conditions of this License, they do not
565
+ excuse you from the conditions of this License. If you cannot convey a
566
+ covered work so as to satisfy simultaneously your obligations under this
567
+ License and any other pertinent obligations, then as a consequence you may
568
+ not convey it at all. For example, if you agree to terms that obligate you
569
+ to collect a royalty for further conveying from those to whom you convey
570
+ the Program, the only way you could satisfy both those terms and this
571
+ License would be to refrain entirely from conveying the Program.
572
+
573
+
574
+ 13. Use with the GNU Affero General Public License.
575
+ --------------------------------------------------
576
+
577
+ Notwithstanding any other provision of this License, you have
578
+ permission to link or combine any covered work with a work licensed
579
+ under version 3 of the GNU Affero General Public License into a single
580
+ combined work, and to convey the resulting work. The terms of this
581
+ License will continue to apply to the part which is the covered work,
582
+ but the special requirements of the GNU Affero General Public License,
583
+ section 13, concerning interaction through a network will apply to the
584
+ combination as such.
585
+
586
+
587
+ 14. Revised Versions of this License.
588
+ --------------------------------------------------
589
+
590
+ The Free Software Foundation may publish revised and/or new versions of
591
+ the GNU General Public License from time to time. Such new versions will
592
+ be similar in spirit to the present version, but may differ in detail to
593
+ address new problems or concerns.
594
+
595
+ Each version is given a distinguishing version number. If the
596
+ Program specifies that a certain numbered version of the GNU General
597
+ Public License "or any later version" applies to it, you have the
598
+ option of following the terms and conditions either of that numbered
599
+ version or of any later version published by the Free Software
600
+ Foundation. If the Program does not specify a version number of the
601
+ GNU General Public License, you may choose any version ever published
602
+ by the Free Software Foundation.
603
+
604
+ If the Program specifies that a proxy can decide which future
605
+ versions of the GNU General Public License can be used, that proxy's
606
+ public statement of acceptance of a version permanently authorizes you
607
+ to choose that version for the Program.
608
+
609
+ Later license versions may give you additional or different
610
+ permissions. However, no additional obligations are imposed on any
611
+ author or copyright holder as a result of your choosing to follow a
612
+ later version.
613
+
614
+
615
+ 15. Disclaimer of Warranty.
616
+ --------------------------------------------------
617
+
618
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
619
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
620
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
621
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
622
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
623
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
624
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
625
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
626
+
627
+
628
+ 16. Limitation of Liability.
629
+ --------------------------------------------------
630
+
631
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
632
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
633
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
634
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
635
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
636
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
637
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
638
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
639
+ SUCH DAMAGES.
640
+
641
+
642
+ 17. Interpretation of Sections 15 and 16.
643
+ --------------------------------------------------
644
+
645
+ If the disclaimer of warranty and limitation of liability provided
646
+ above cannot be given local legal effect according to their terms,
647
+ reviewing courts shall apply local law that most closely approximates
648
+ an absolute waiver of all civil liability in connection with the
649
+ Program, unless a warranty or assumption of liability accompanies a
650
+ copy of the Program in return for a fee.
data/license/lgplv3.md ADDED
@@ -0,0 +1,171 @@
1
+ This version of the GNU Lesser General Public License incorporates
2
+ the terms and conditions of version 3 of the GNU General Public
3
+ License, supplemented by the additional permissions listed below.
4
+
5
+
6
+ 0. Additional Definitions.
7
+ --------------------------
8
+
9
+ As used herein, "this License" refers to version 3 of the GNU Lesser
10
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
11
+ General Public License.
12
+
13
+ "The Library" refers to a covered work governed by this License,
14
+ other than an Application or a Combined Work as defined below.
15
+
16
+ An "Application" is any work that makes use of an interface provided
17
+ by the Library, but which is not otherwise based on the Library.
18
+ Defining a subclass of a class defined by the Library is deemed a mode
19
+ of using an interface provided by the Library.
20
+
21
+ A "Combined Work" is a work produced by combining or linking an
22
+ Application with the Library. The particular version of the Library
23
+ with which the Combined Work was made is also called the "Linked
24
+ Version".
25
+
26
+ The "Minimal Corresponding Source" for a Combined Work means the
27
+ Corresponding Source for the Combined Work, excluding any source code
28
+ for portions of the Combined Work that, considered in isolation, are
29
+ based on the Application, and not on the Linked Version.
30
+
31
+ The "Corresponding Application Code" for a Combined Work means the
32
+ object code and/or source code for the Application, including any data
33
+ and utility programs needed for reproducing the Combined Work from the
34
+ Application, but excluding the System Libraries of the Combined Work.
35
+
36
+
37
+ 1. Exception to Section 3 of the GNU GPL.
38
+ --------------------------------------------------------------------------------
39
+
40
+ You may convey a covered work under sections 3 and 4 of this License
41
+ without being bound by section 3 of the GNU GPL.
42
+
43
+
44
+ 2. Conveying Modified Versions.
45
+ --------------------------------------------------------------------------------
46
+
47
+ If you modify a copy of the Library, and, in your modifications, a
48
+ facility refers to a function or data to be supplied by an Application
49
+ that uses the facility (other than as an argument passed when the
50
+ facility is invoked), then you may convey a copy of the modified
51
+ version:
52
+
53
+ * a) under this License, provided that you make a good faith effort to
54
+ ensure that, in the event an Application does not supply the
55
+ function or data, the facility still operates, and performs
56
+ whatever part of its purpose remains meaningful, or
57
+
58
+ * b) under the GNU GPL, with none of the additional permissions of
59
+ this License applicable to that copy.
60
+
61
+
62
+ 3. Object Code Incorporating Material from Library Header Files.
63
+ --------------------------------------------------------------------------------
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ * a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ * b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+
80
+ 4. Combined Works.
81
+ --------------------------------------------------------------------------------
82
+
83
+ You may convey a Combined Work under terms of your choice that,
84
+ taken together, effectively do not restrict modification of the
85
+ portions of the Library contained in the Combined Work and reverse
86
+ engineering for debugging such modifications, if you also do each of
87
+ the following:
88
+
89
+ * a) Give prominent notice with each copy of the Combined Work that
90
+ the Library is used in it and that the Library and its use are
91
+ covered by this License.
92
+
93
+ * b) Accompany the Combined Work with a copy of the GNU GPL and this license
94
+ document.
95
+
96
+ * c) For a Combined Work that displays copyright notices during
97
+ execution, include the copyright notice for the Library among
98
+ these notices, as well as a reference directing the user to the
99
+ copies of the GNU GPL and this license document.
100
+
101
+ * d) Do one of the following:
102
+
103
+ * 0) Convey the Minimal Corresponding Source under the terms of this
104
+ License, and the Corresponding Application Code in a form
105
+ suitable for, and under terms that permit, the user to
106
+ recombine or relink the Application with a modified version of
107
+ the Linked Version to produce a modified Combined Work, in the
108
+ manner specified by section 6 of the GNU GPL for conveying
109
+ Corresponding Source.
110
+
111
+ * 1) Use a suitable shared library mechanism for linking with the
112
+ Library. A suitable mechanism is one that (a) uses at run time
113
+ a copy of the Library already present on the user's computer
114
+ system, and (b) will operate properly with a modified version
115
+ of the Library that is interface-compatible with the Linked
116
+ Version.
117
+
118
+ * e) Provide Installation Information, but only if you would otherwise
119
+ be required to provide such information under section 6 of the
120
+ GNU GPL, and only to the extent that such information is
121
+ necessary to install and execute a modified version of the
122
+ Combined Work produced by recombining or relinking the
123
+ Application with a modified version of the Linked Version. (If
124
+ you use option 4d0, the Installation Information must accompany
125
+ the Minimal Corresponding Source and Corresponding Application
126
+ Code. If you use option 4d1, you must provide the Installation
127
+ Information in the manner specified by section 6 of the GNU GPL
128
+ for conveying Corresponding Source.)
129
+
130
+
131
+ 5. Combined Libraries.
132
+ --------------------------------------------------------------------------------
133
+
134
+ You may place library facilities that are a work based on the
135
+ Library side by side in a single library together with other library
136
+ facilities that are not Applications and are not covered by this
137
+ License, and convey such a combined library under terms of your
138
+ choice, if you do both of the following:
139
+
140
+ * a) Accompany the combined library with a copy of the same work based
141
+ on the Library, uncombined with any other library facilities,
142
+ conveyed under the terms of this License.
143
+
144
+ * b) Give prominent notice with the combined library that part of it
145
+ is a work based on the Library, and explaining where to find the
146
+ accompanying uncombined form of the same work.
147
+
148
+
149
+ 6. Revised Versions of the GNU Lesser General Public License.
150
+ --------------------------------------------------------------------------------
151
+
152
+ The Free Software Foundation may publish revised and/or new versions
153
+ of the GNU Lesser General Public License from time to time. Such new
154
+ versions will be similar in spirit to the present version, but may
155
+ differ in detail to address new problems or concerns.
156
+
157
+ Each version is given a distinguishing version number. If the
158
+ Library as you received it specifies that a certain numbered version
159
+ of the GNU Lesser General Public License "or any later version"
160
+ applies to it, you have the option of following the terms and
161
+ conditions either of that published version or of any later version
162
+ published by the Free Software Foundation. If the Library as you
163
+ received it does not specify a version number of the GNU Lesser
164
+ General Public License, you may choose any version of the GNU Lesser
165
+ General Public License ever published by the Free Software Foundation.
166
+
167
+ If the Library as you received it specifies that a proxy can decide
168
+ whether future versions of the GNU Lesser General Public License shall
169
+ apply, that proxy's public statement of acceptance of any version is
170
+ permanent authorization for you to choose that version for the
171
+ Library.
Binary file
data/readme.md ADDED
@@ -0,0 +1,162 @@
1
+ [![Build Status](https://travis-ci.org/ToadJamb/pb_and_j.svg?branch=master)](https://travis-ci.org/ToadJamb/pb_and_j)
2
+
3
+ PBAndJ
4
+ ======
5
+
6
+ Want a progress bar that's going to stay put and yet leave you satisfied?
7
+
8
+ Look no further.
9
+ With no artificial flavors (dependencies),
10
+ entirely organic ingredients
11
+ (ServingSeconds actually came out of original code for PBAndJ),
12
+ and no GMOs (all Ruby objects are left unharmed),
13
+ PBAndJ is a progress bar you can feel good about giving to your kids.
14
+ And your Ruby projects.
15
+
16
+
17
+ Install
18
+ =======
19
+
20
+ $ gem install pb_and_j
21
+
22
+
23
+ Gemfile
24
+ =======
25
+
26
+ $ gem 'pb_and_j'
27
+
28
+
29
+ Require
30
+ =======
31
+
32
+ $ require 'pb_and_j'
33
+
34
+
35
+ Examples
36
+ ========
37
+
38
+ Basic usage would go something like this:
39
+
40
+ NOTE: `tick` will call `start` if it has not already been invoked.
41
+
42
+ ```
43
+ count = things.count # Assume an array of Thing objects
44
+
45
+ bar = PBAndJ::ProgressBar.new('things', count) # description and total count
46
+ bar.start # set the start time and print initial status
47
+
48
+ things.each do |thing|
49
+ # do something with things
50
+ bar.tick # automatically increase the counter and displays the updated progress bar
51
+ end
52
+
53
+ bar.stop # prints the current status and then a line feed
54
+ ```
55
+
56
+ In the case that you do not wish to update for every iteration,
57
+ `tick` also accepts the current index as a parameter:
58
+
59
+ ```
60
+ count = things.count # Assume an array of Thing objects
61
+
62
+ bar = PBAndJ::ProgressBar.new('things', count) # description and total count
63
+ bar.start # set the start time and print initial status
64
+
65
+ things.each_with_index do |thing, i|
66
+ # do something with things
67
+ bar.tick i + 1 if i % 100 == 0 # only update the progress bar every 100th iteration
68
+ end
69
+
70
+ bar.stop # prints the current status and then a line feed
71
+ ```
72
+
73
+ And for the really crazy stuff,
74
+ `tick` also accepts the time that you expect it to complete
75
+ and uses that for the expected completion time,
76
+ as well as the expected elapsed time:
77
+
78
+ ```
79
+ count = things.count # Assume an array of Thing objects
80
+
81
+ bar = PBAndJ::ProgressBar.new('things', count) # description and total count
82
+ bar.start # set the start time and print initial status
83
+
84
+ things.each_with_index do |thing, i|
85
+ # do something with things
86
+ time = my_crazy_non_linear_completion_time_calculation
87
+ bar.tick i + 1, time # tell PBAndJ when the process is expected to complete.
88
+ end
89
+
90
+ bar.stop # prints the current status and then a line feed
91
+ ```
92
+
93
+
94
+ Initialization
95
+ ==============
96
+
97
+ The full parameters for initialization are:
98
+
99
+ PBAndJ::ProgressBar.new label, count, pad: 0, width: 80, show: true, stream: STDOUT
100
+
101
+ * `label` (required)
102
+ * the description to use for the progress bar
103
+ * `count` (required)
104
+ * the total number of expected iterations
105
+ * `pad`
106
+ * padding to use around the label
107
+ * with a label of 'foo' and padding of 5, the label would be rendered as 'foo '
108
+ * `width`
109
+ * the total width that the progress bar should use
110
+ * `show`
111
+ * whether the progress bar should be automatically printed in the console.
112
+ * `stream`
113
+ * this is unlikely to be used outside of testing, but if it's useful, go for it.
114
+
115
+
116
+ More Complex Usage
117
+ ==================
118
+
119
+ Multiple progress bars may be managed by using ANSI codes:
120
+
121
+ ```
122
+ is = 3
123
+ js = 50
124
+
125
+ ibar = PBAndJ::ProgressBar.new('i', is)
126
+
127
+ ibar.start
128
+ ibar.stop
129
+
130
+ is.times do |i|
131
+ jbar = PBAndJ::ProgressBar.new('j', js)
132
+ jbar.start
133
+ js.times do |j|
134
+ jbar.tick
135
+ sleep 0.1
136
+ end
137
+ jbar.stop # outputs a line break
138
+
139
+ print "\e[A" * 2 # move up 2 lines
140
+
141
+ ibar.tick
142
+ ibar.stop
143
+ sleep 1
144
+ end
145
+ ```
146
+
147
+ If you want to use the output in some other way,
148
+ set `show` to false and simply use `#message`:
149
+
150
+ ```
151
+ count = things.count # Assume an array of Thing objects
152
+
153
+ bar = PBAndJ::ProgressBar.new('things', count, show: false)
154
+
155
+ things.each_with_index do |thing, i|
156
+ # do something with things
157
+ bar.tick # does not print anything out
158
+ print "\r" + bar.message # this is essentially what PBAndJ does when show is true
159
+ end
160
+
161
+ bar.stop # only necessary if you wish to see a message after everything is complete
162
+ ```
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pb_and_j
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Travis Herrick
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-01-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: serving_seconds
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake_tasks
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: gems
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: cane
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: travis-yaml
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: wwtd
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: An adjustable rate progress bar that does not monkey patch Ruby objects
112
+ email:
113
+ - tthetoad@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files:
117
+ - readme.md
118
+ files:
119
+ - lib/pb_and_j.rb
120
+ - lib/pb_and_j/progress_bar.rb
121
+ - license/gplv3.md
122
+ - license/lgplv3.md
123
+ - license/lgplv3.png
124
+ - readme.md
125
+ homepage: http://www.bitbucket.org/ToadJamb/gems_pb_and_j
126
+ licenses:
127
+ - LGPLV3
128
+ metadata: {}
129
+ post_install_message:
130
+ rdoc_options: []
131
+ require_paths:
132
+ - lib
133
+ required_ruby_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ requirements: []
144
+ rubyforge_project:
145
+ rubygems_version: 2.5.1
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: Progress Bar and just that
149
+ test_files: []