perus 0.1.21 → 0.1.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2eb9babcf7c051aeca8860be3b4865d0f566d27a
4
- data.tar.gz: 0a04455e38f26ccc96cefdca91023e0a89586db9
3
+ metadata.gz: e622a4678cfa0b65a7fb77ae39b45ff4489140ac
4
+ data.tar.gz: d78f1a46700e24f2377f25459fc0488f33babdd5
5
5
  SHA512:
6
- metadata.gz: 0524c08e915553654605df6e52c8560562442637fe23932d7e8e3ecf2b4d64af6724ff930118ff3580a3b56495212a8392795f8268fedf44895ced29c8a6b961
7
- data.tar.gz: 4bac65c5037b1770705274b4175fed6e66d35110beb92d9a1748dc0d208b82d14888efb9c6e6c1e354837b451355cd7bf3bec0ac78b235b9d6825524222d59aa
6
+ metadata.gz: a50dce97f9d25871402b771e6528a5144a4fcfdf4da5b4f6bcef636655ce8fd7f278395678aad1ddc123dc43bed4837a317169d00d9d9872395bc69aceb01d28
7
+ data.tar.gz: 695b701da0d7100bc5cf1ef250c674815e279f6a4d6dc1945a5326d3621fd03357bef7936a7a54d90aba7b07135e4d36dc9743418c9dda0edeea34cf5a3c07d2
@@ -58,8 +58,8 @@ module Perus::Server
58
58
  @auth ||= Rack::Auth::Basic::Request.new(request.env)
59
59
  @auth.provided? && @auth.basic? && @auth.credentials &&
60
60
  @auth.credentials == [
61
- Server.options.auth['username'],
62
- Server.options.auth['password']
61
+ Server.options.auth['username'].to_s,
62
+ Server.options.auth['password'].to_s
63
63
  ]
64
64
  end
65
65
  end
data/lib/perus/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Perus
2
- VERSION = "0.1.21"
2
+ VERSION = "0.1.22"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: perus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.21
4
+ version: 0.1.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Will Cannings