rack-auth-cookie 0.7.4 → 0.7.5
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.
- data/lib/rack/auth/cookie.rb +2 -2
- data/rack-auth-cookie.gemspec +1 -1
- data/test/test_rack_auth_cookie.rb +1 -1
- metadata +3 -3
data/lib/rack/auth/cookie.rb
CHANGED
|
@@ -6,7 +6,7 @@ module Rack
|
|
|
6
6
|
module Auth
|
|
7
7
|
class Cookie
|
|
8
8
|
# The version of the rack-auth-cookie library.
|
|
9
|
-
VERSION = '0.7.
|
|
9
|
+
VERSION = '0.7.5'
|
|
10
10
|
|
|
11
11
|
# Creates a new Rack::Auth::Cookie object.
|
|
12
12
|
#
|
|
@@ -243,7 +243,7 @@ module Rack
|
|
|
243
243
|
end
|
|
244
244
|
|
|
245
245
|
if @@share_with_subdomains
|
|
246
|
-
result
|
|
246
|
+
result = "." + result
|
|
247
247
|
end
|
|
248
248
|
|
|
249
249
|
result
|
data/rack-auth-cookie.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |gem|
|
|
4
4
|
gem.name = 'rack-auth-cookie'
|
|
5
|
-
gem.version = '0.7.
|
|
5
|
+
gem.version = '0.7.5'
|
|
6
6
|
gem.authors = ["Daniel Berger", "Charlie O'Keefe"]
|
|
7
7
|
gem.email = 'cokeefe@globe.gov'
|
|
8
8
|
gem.homepage = 'http://www.github.com/charlieok/rack-auth-cookie'
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rack-auth-cookie
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 7
|
|
9
|
-
-
|
|
10
|
-
version: 0.7.
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.7.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Daniel Berger
|