Skip to content

Commit 6b50565

Browse files
author
Trevor Sears
committed
Cleaned up licensing information and added copyright header.
1 parent f48caa9 commit 6b50565

File tree

4 files changed

+57
-64
lines changed

4 files changed

+57
-64
lines changed

gulpfile.js

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
/*
2-
* Created by Trevor Sears <[email protected]>.
3-
* 8:48 PM -- June 16th, 2019.
4-
* Project: repo-name
2+
* Created by Trevor Sears <[email protected]> (https://trevorsears.com/).
3+
* 8:48 PM -- June 16th, 2019.
4+
* Project: @jsdsl/queue
5+
*
6+
* @jsdsl/queue - A queue (FIFO) implementation written in TypeScript.
7+
* Copyright (C) 2021 Trevor Sears
8+
*
9+
* This program is free software: you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation, either version 3 of the License, or
12+
* (at your option) any later version.
13+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
*
19+
* You should have received a copy of the GNU General Public License
20+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
521
*/
622

723
const gulp = require("gulp");

license.md

-55
Original file line numberDiff line numberDiff line change
@@ -538,58 +538,3 @@ given local legal effect according to their terms, reviewing courts shall apply
538538
law that most closely approximates an absolute waiver of all civil liability in
539539
connection with the Program, unless a warranty or assumption of liability accompanies
540540
a copy of the Program in return for a fee.
541-
542-
_END OF TERMS AND CONDITIONS_
543-
544-
## How to Apply These Terms to Your New Programs
545-
546-
If you develop a new program, and you want it to be of the greatest possible use to
547-
the public, the best way to achieve this is to make it free software which everyone
548-
can redistribute and change under these terms.
549-
550-
To do so, attach the following notices to the program. It is safest to attach them
551-
to the start of each source file to most effectively state the exclusion of warranty;
552-
and each file should have at least the “copyright” line and a pointer to
553-
where the full notice is found.
554-
555-
@jsdsl/queue - A queue/FIFO data structure.
556-
Copyright (C) 2019 Trevor Sears
557-
558-
This program is free software: you can redistribute it and/or modify
559-
it under the terms of the GNU General Public License as published by
560-
the Free Software Foundation, either version 3 of the License, or
561-
(at your option) any later version.
562-
563-
This program is distributed in the hope that it will be useful,
564-
but WITHOUT ANY WARRANTY; without even the implied warranty of
565-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
566-
GNU General Public License for more details.
567-
568-
You should have received a copy of the GNU General Public License
569-
along with this program. If not, see <http://www.gnu.org/licenses/>.
570-
571-
Also add information on how to contact you by electronic and paper mail.
572-
573-
If the program does terminal interaction, make it output a short notice like this
574-
when it starts in an interactive mode:
575-
576-
@jsdsl/queue Copyright (C) 2019 Trevor Sears
577-
This program comes with ABSOLUTELY NO WARRANTY; for details type 'show w'.
578-
This is free software, and you are welcome to redistribute it
579-
under certain conditions; type 'show c' for details.
580-
581-
The hypothetical commands `show w` and `show c` should show the appropriate parts of
582-
the General Public License. Of course, your program's commands might be different;
583-
for a GUI interface, you would use an “about box”.
584-
585-
You should also get your employer (if you work as a programmer) or school, if any, to
586-
sign a “copyright disclaimer” for the program, if necessary. For more
587-
information on this, and how to apply and follow the GNU GPL, see
588-
&lt;<http://www.gnu.org/licenses/>&gt;.
589-
590-
The GNU General Public License does not permit incorporating your program into
591-
proprietary programs. If your program is a subroutine library, you may consider it
592-
more useful to permit linking proprietary applications with the library. If this is
593-
what you want to do, use the GNU Lesser General Public License instead of this
594-
License. But first, please read
595-
&lt;<http://www.gnu.org/philosophy/why-not-lgpl.html>&gt;.

ts/main.ts

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
/*
2-
* Created by Trevor Sears <[email protected]>.
3-
* 10:53 PM -- June 11th, 2019.
4-
* Project: @jsdsl/queue
2+
* Created by Trevor Sears <[email protected]> (https://trevorsears.com/).
3+
* 10:53 PM -- June 11th, 2019.
4+
* Project: @jsdsl/queue
5+
*
6+
* @jsdsl/queue - A queue (FIFO) implementation written in TypeScript.
7+
* Copyright (C) 2021 Trevor Sears
8+
*
9+
* This program is free software: you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation, either version 3 of the License, or
12+
* (at your option) any later version.
13+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
*
19+
* You should have received a copy of the GNU General Public License
20+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
521
*/
622

723
/**

ts/queue.ts

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
/*
2-
* Created by Trevor Sears <[email protected]>.
3-
* 1:10 PM -- February 18th, 2019.
4-
* Project: @jsdsl/queue
2+
* Created by Trevor Sears <[email protected]> (https://trevorsears.com/).
3+
* 1:10 PM -- February 18th, 2019.
4+
* Project: @jsdsl/queue
5+
*
6+
* @jsdsl/queue - A queue (FIFO) implementation written in TypeScript.
7+
* Copyright (C) 2021 Trevor Sears
8+
*
9+
* This program is free software: you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation, either version 3 of the License, or
12+
* (at your option) any later version.
13+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
*
19+
* You should have received a copy of the GNU General Public License
20+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
521
*/
622

723
/**

0 commit comments

Comments
 (0)