rspectacular 0.70.1 → 0.70.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6f2cfc9f60bd467f54f93e97f267c9e96b53c17
4
- data.tar.gz: 9444e2568ecbf5c10fbe88e5f3948765d9c9823d
3
+ metadata.gz: a31183589b0fa3b05995671ea03f147c35ca8809
4
+ data.tar.gz: 87e7967baaa10d165a1707f4775163e53fbe48b8
5
5
  SHA512:
6
- metadata.gz: cde2d3563616c11f79a6754505ff8749ae472f5445b11205994761484d14dbc2ee3c21480f7b67c788eb350553022290677e0b067f928a6b7af0109c62261e26
7
- data.tar.gz: 983db7b394c7d7e775c7351c3c6e700acf9bcbfd93b207566478978eb7b42f3725987cddff2c5174a4f62ca5394f635022e3a9563995ffa8831a7b92417bd4d0
6
+ metadata.gz: 01f3ef4eb234c01ce71783b6e119c4c1326900fca15762ed5410e99a10371810fa9964a4541ec86848dcf229a777d680dcc0fdd076e5764706b60dd99320de94
7
+ data.tar.gz: 2335296d622d382506f0f1ccb5439cc5f91abb1fcf4f7fc04f1a73eeed055a2da185256edffdde355f4c92b8a0567bb9a03a5a2ab0b9d2b37e471737fed1158d
data/LICENSE.txt ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2010-2016 The Kompanee, Ltd
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.md CHANGED
@@ -35,6 +35,26 @@ Usage
35
35
 
36
36
  Take a look at the project's [Wiki](#wiki) for full details and usage.
37
37
 
38
+ Installation
39
+ --------------------------------------------------------------------------------
40
+
41
+ Rspectacular is cryptographically signed. To be sure the gem you install hasn’t
42
+ been tampered with:
43
+
44
+ Add my public key (if you haven’t already) as a trusted certificate
45
+
46
+ ```
47
+ gem cert --add <(curl -Ls https://raw.github.com/thekompanee/rspectacular/master/certs/thekompanee.pem)
48
+
49
+ gem install rspectacular -P MediumSecurity
50
+ ```
51
+
52
+ The MediumSecurity trust profile will verify signed gems, but allow the
53
+ installation of unsigned dependencies.
54
+
55
+ This is necessary because not all of Rspectacular's dependencies are signed, so
56
+ we cannot use HighSecurity.
57
+
38
58
  Issues
39
59
  ------
40
60
 
@@ -1,3 +1,3 @@
1
1
  module Rspectacular
2
- VERSION = '0.70.1'.freeze
2
+ VERSION = '0.70.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspectacular
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.1
4
+ version: 0.70.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - jfelchner
@@ -59,7 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
- - LICENSE
62
+ - LICENSE.txt
63
63
  - README.md
64
64
  - Rakefile
65
65
  - lib/rspectacular.rb
data/LICENSE DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2013 Jeff Felchner
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.