gollum-auth 0.3.0 → 0.3.1
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/README.md +3 -4
- data/gollum-auth.gemspec +1 -0
- data/lib/gollum/auth/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79549a6f6d86794c1194402a9ab10ebbc85df10c
|
|
4
|
+
data.tar.gz: 3dd9a0dbf564ba2c7fa2199ddb25b6d359c47484
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df29fc60ebe46701523224574238ed6e60cafe1d496fa6a8d9351353922dc2a4486fdce2ba5637c73117fbbaab6bad4acbacaef17c10bc67b0e22e4753a70d7e
|
|
7
|
+
data.tar.gz: f69251cf1123e04d47727516da68d9135c4d4aacdc507e400f4014ae504c29d27612c44803ea61312c2cc0250680a473807bf84b059d5f8a052408fd6bc25019
|
data/README.md
CHANGED
|
@@ -3,14 +3,13 @@
|
|
|
3
3
|
[](https://badge.fury.io/rb/gollum-auth)
|
|
4
4
|
[](https://travis-ci.org/bjoernalbers/gollum-auth)
|
|
5
5
|
|
|
6
|
-
[
|
|
6
|
+
[gollum](https://github.com/gollum/gollum)
|
|
7
7
|
is an excellent Wiki-software.
|
|
8
8
|
But it does not include user authentication (on purpose).
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
[gollum-auth](https://github.com/bjoernalbers/gollum-auth) adds
|
|
11
11
|
[HTTP Basic Authentication](https://en.wikipedia.org/wiki/Basic_access_authentication)
|
|
12
|
-
to gollum.
|
|
13
|
-
With this only authenticated users have access to your wiki.
|
|
12
|
+
to gollum so that only authenticated users have access to your wiki.
|
|
14
13
|
Optionally you can allow readonly-access for unauthenticated guests.
|
|
15
14
|
|
|
16
15
|
|
data/gollum-auth.gemspec
CHANGED
|
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.description = 'Authentication Middleware for Gollum Wiki'
|
|
14
14
|
spec.homepage = 'https://github.com/bjoernalbers/gollum-auth'
|
|
15
15
|
spec.license = 'MIT'
|
|
16
|
+
spec.required_ruby_version = '>= 2.0.0'
|
|
16
17
|
|
|
17
18
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
18
19
|
f.match(%r{^(test|spec|features)/})
|
data/lib/gollum/auth/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gollum-auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Björn Albers
|
|
@@ -157,7 +157,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
157
157
|
requirements:
|
|
158
158
|
- - '>='
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
|
-
version:
|
|
160
|
+
version: 2.0.0
|
|
161
161
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
162
|
requirements:
|
|
163
163
|
- - '>='
|
|
@@ -168,5 +168,5 @@ rubyforge_project:
|
|
|
168
168
|
rubygems_version: 2.6.10
|
|
169
169
|
signing_key:
|
|
170
170
|
specification_version: 4
|
|
171
|
-
summary: gollum-auth-0.3.
|
|
171
|
+
summary: gollum-auth-0.3.1
|
|
172
172
|
test_files: []
|