cassiopeia 0.1.4 → 0.1.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/README.rdoc +1 -1
- data/Rakefile +1 -1
- data/lib/cassiopeia.rb +1 -1
- data/lib/cassiopeia/user.rb +2 -2
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
- Yet another custom CAS client/server implementation. This plugin allows you to perform single-server authorization between two different rails applications.
|
8
8
|
|
9
9
|
= Changelog:
|
10
|
-
- 0.1.
|
10
|
+
- 0.1.5: Method to_json of User class fixed.
|
11
11
|
- 0.1.3: Removing request after return made optional
|
12
12
|
- 0.1.2: Added some new parameters of request saving to the default configuration.
|
13
13
|
- 0.1.1: Lesser bug with concurrent requests restoring fixed.
|
data/Rakefile
CHANGED
data/lib/cassiopeia.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
$:.unshift(File.dirname(__FILE__)) unless
|
2
2
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
3
3
|
module Cassiopeia
|
4
|
-
VERSION = '0.1.
|
4
|
+
VERSION = '0.1.5'
|
5
5
|
autoload :User, 'cassiopeia/user'
|
6
6
|
autoload :Base, 'cassiopeia/base'
|
7
7
|
autoload :Exception, 'cassiopeia/base'
|
data/lib/cassiopeia/user.rb
CHANGED