cassiopeia 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -0
- data/Rakefile +1 -1
- data/lib/cassiopeia/config.rb +1 -1
- data/lib/cassiopeia.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -7,6 +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.2: Added some new parameters of request saving to the default configuration.
|
10
11
|
- 0.1.1: Lesser bug with concurrent requests restoring fixed.
|
11
12
|
- 0.1.0: Multiple requests storing implemented. Workarounds for concurrent requests processing applied.
|
12
13
|
- 0.0.9: The bug with multiple concurrent requests processing fixed.
|
data/Rakefile
CHANGED
data/lib/cassiopeia/config.rb
CHANGED
@@ -16,7 +16,7 @@ module Cassiopeia
|
|
16
16
|
:format => "js",
|
17
17
|
:rack_request_uri_key => "REQUEST_URI",
|
18
18
|
:rack_query_string_key => "QUERY_STRING",
|
19
|
-
:rack_save_keys => "REQUEST_METHOD QUERY_STRING REQUEST_URI",
|
19
|
+
:rack_save_keys => "REQUEST_METHOD QUERY_STRING REQUEST_URI RAW_POST_DATA action_controller.request.request_parameters",
|
20
20
|
:rack_session_store => "cas_rack_session",
|
21
21
|
:rack_session_key => "rack.session",
|
22
22
|
:rack_unique_req_key => "cas_req_key",
|
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.2'
|
5
5
|
autoload :User, 'cassiopeia/user'
|
6
6
|
autoload :Base, 'cassiopeia/base'
|
7
7
|
autoload :Exception, 'cassiopeia/base'
|