sign 0.6.0 → 1.0.0
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/CHANGELOG.md +1 -7
- data/README.md +32 -16
- data/lib/sign/version.rb +1 -1
- data/sign.gemspec +2 -2
- data/vendor/licenses/afl-3.0.txt +43 -0
- data/vendor/licenses/artistic-2.0.txt +201 -0
- data/vendor/licenses/cc-by-4.0.txt +395 -0
- data/vendor/licenses/cc-by-sa-4.0.txt +427 -0
- data/vendor/licenses/cc0-1.0.txt +116 -0
- data/vendor/licenses/ecl-2.0.txt +203 -0
- data/vendor/licenses/epl-1.0.txt +203 -0
- data/vendor/licenses/eupl-1.1.txt +311 -0
- data/vendor/licenses/isc.txt +15 -0
- data/vendor/licenses/lgpl-2.1.txt +504 -0
- data/vendor/licenses/lgpl-3.0.txt +165 -0
- data/vendor/licenses/lppl-1.3c.txt +415 -0
- data/vendor/licenses/mpl-2.0.txt +373 -0
- data/vendor/licenses/ms-pl.txt +22 -0
- data/vendor/licenses/ms-rl.txt +21 -0
- data/vendor/licenses/osl-3.0.txt +172 -0
- data/vendor/licenses/postgresql.txt +19 -0
- data/vendor/licenses/wtfpl.txt +13 -0
- metadata +22 -3
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
PostgreSQL Licence
|
|
2
|
+
|
|
3
|
+
Copyright (c) [YEAR], [AUTHOR]
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and distribute this software and its
|
|
6
|
+
documentation for any purpose, without fee, and without a written agreement is
|
|
7
|
+
hereby granted, provided that the above copyright notice and this paragraph
|
|
8
|
+
and the following two paragraphs appear in all copies.
|
|
9
|
+
|
|
10
|
+
IN NO EVENT SHALL [AUTHOR] BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
|
|
11
|
+
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
|
|
12
|
+
OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF [AUTHOR]
|
|
13
|
+
HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
14
|
+
|
|
15
|
+
[AUTHOR] SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
|
|
16
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
17
|
+
PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
|
|
18
|
+
AND [AUTHOR] HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
|
|
19
|
+
ENHANCEMENTS, OR MODIFICATIONS.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
2
|
+
Version 2, December 2004
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
|
5
|
+
|
|
6
|
+
Everyone is permitted to copy and distribute verbatim or modified
|
|
7
|
+
copies of this license document, and changing it is allowed as long
|
|
8
|
+
as the name is changed.
|
|
9
|
+
|
|
10
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
11
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
12
|
+
|
|
13
|
+
0. You just DO WHAT THE FUCK YOU WANT TO.
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sign
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Evan Ng
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2017-11-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -56,7 +56,8 @@ description: A command-line tool that generates a license of your choice in a ma
|
|
|
56
56
|
of seconds.
|
|
57
57
|
email:
|
|
58
58
|
- contact@evanng.com
|
|
59
|
-
executables:
|
|
59
|
+
executables:
|
|
60
|
+
- sign
|
|
60
61
|
extensions: []
|
|
61
62
|
extra_rdoc_files: []
|
|
62
63
|
files:
|
|
@@ -78,14 +79,32 @@ files:
|
|
|
78
79
|
- lib/sign/runner.rb
|
|
79
80
|
- lib/sign/version.rb
|
|
80
81
|
- sign.gemspec
|
|
82
|
+
- vendor/licenses/afl-3.0.txt
|
|
81
83
|
- vendor/licenses/agpl-3.0.txt
|
|
82
84
|
- vendor/licenses/apache-2.0.txt
|
|
85
|
+
- vendor/licenses/artistic-2.0.txt
|
|
83
86
|
- vendor/licenses/bsd-2.txt
|
|
84
87
|
- vendor/licenses/bsd-3.txt
|
|
88
|
+
- vendor/licenses/cc-by-4.0.txt
|
|
89
|
+
- vendor/licenses/cc-by-sa-4.0.txt
|
|
90
|
+
- vendor/licenses/cc0-1.0.txt
|
|
91
|
+
- vendor/licenses/ecl-2.0.txt
|
|
92
|
+
- vendor/licenses/epl-1.0.txt
|
|
93
|
+
- vendor/licenses/eupl-1.1.txt
|
|
85
94
|
- vendor/licenses/gpl-2.0.txt
|
|
86
95
|
- vendor/licenses/gpl-3.0.txt
|
|
96
|
+
- vendor/licenses/isc.txt
|
|
97
|
+
- vendor/licenses/lgpl-2.1.txt
|
|
98
|
+
- vendor/licenses/lgpl-3.0.txt
|
|
99
|
+
- vendor/licenses/lppl-1.3c.txt
|
|
87
100
|
- vendor/licenses/mit.txt
|
|
101
|
+
- vendor/licenses/mpl-2.0.txt
|
|
102
|
+
- vendor/licenses/ms-pl.txt
|
|
103
|
+
- vendor/licenses/ms-rl.txt
|
|
104
|
+
- vendor/licenses/osl-3.0.txt
|
|
105
|
+
- vendor/licenses/postgresql.txt
|
|
88
106
|
- vendor/licenses/unlicense.txt
|
|
107
|
+
- vendor/licenses/wtfpl.txt
|
|
89
108
|
homepage: https://github.com/evanscloud/sign
|
|
90
109
|
licenses:
|
|
91
110
|
- MIT
|