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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7f60571c4203805ec7b26185234617736a60764
4
- data.tar.gz: 0467e62c694fc7c8680145302abd5227e9ac52d5
3
+ metadata.gz: 79549a6f6d86794c1194402a9ab10ebbc85df10c
4
+ data.tar.gz: 3dd9a0dbf564ba2c7fa2199ddb25b6d359c47484
5
5
  SHA512:
6
- metadata.gz: c5fde9348967c6b9b1d657124795873ca80c077868e10548a755ac073df12056b7e368ba44b90b339c037b67a41d26d9085750647ac641d986c3ef166f0810fc
7
- data.tar.gz: 744eadd845807e179ac0ff69695a167938f82efd109325f0cfdac2daee6126e6d1ebaa2adf703bcf9fc3a7b3efda3f91729addec94760ceed80985140aedc7cc
6
+ metadata.gz: df29fc60ebe46701523224574238ed6e60cafe1d496fa6a8d9351353922dc2a4486fdce2ba5637c73117fbbaab6bad4acbacaef17c10bc67b0e22e4753a70d7e
7
+ data.tar.gz: f69251cf1123e04d47727516da68d9135c4d4aacdc507e400f4014ae504c29d27612c44803ea61312c2cc0250680a473807bf84b059d5f8a052408fd6bc25019
data/README.md CHANGED
@@ -3,14 +3,13 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/gollum-auth.svg)](https://badge.fury.io/rb/gollum-auth)
4
4
  [![Build Status](https://travis-ci.org/bjoernalbers/gollum-auth.svg?branch=master)](https://travis-ci.org/bjoernalbers/gollum-auth)
5
5
 
6
- [Gollum](https://github.com/gollum/gollum)
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
- `Gollum::Auth` is a Rack-Middleware that add
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
 
@@ -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)/})
@@ -1,5 +1,5 @@
1
1
  module Gollum
2
2
  module Auth
3
- VERSION = '0.3.0'
3
+ VERSION = '0.3.1'
4
4
  end
5
5
  end
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.0
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: '0'
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.0
171
+ summary: gollum-auth-0.3.1
172
172
  test_files: []