RubyApp 0.5.42 → 0.5.43
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/Gemfile.lock
CHANGED
data/lib/ruby_app/elements/mobile/documents/authentication/open_id/authentication_document.rb
CHANGED
@@ -42,6 +42,7 @@ module RubyApp
|
|
42
42
|
case response.status
|
43
43
|
when ::OpenID::Consumer::SUCCESS
|
44
44
|
RubyApp::Session.identity = self.create_identity_from_response(response)
|
45
|
+
RubyApp::Log.info("OPENID RubyApp::Session.identity.url=#{RubyApp::Session.identity.url.inspect}")
|
45
46
|
when ::OpenID::Consumer::FAILURE
|
46
47
|
RubyApp::Log.error("OPENID #{response.class}")
|
47
48
|
RubyApp::Log.error("OPENID #{response.message.inspect}")
|
data/lib/ruby_app/log.rb
CHANGED
@@ -17,7 +17,7 @@ module RubyApp
|
|
17
17
|
class Formatter < ::Logger::Formatter
|
18
18
|
|
19
19
|
def call(severity, time, application, message)
|
20
|
-
return "#{severity.ljust(5, ' ')} | #{time.strftime('%Y-%m-%d %H:%M:%S %Z')} | #{Socket.gethostname} | #{
|
20
|
+
return "#{severity.ljust(5, ' ')} | #{time.strftime('%Y-%m-%d %H:%M:%S %Z')} | #{Socket.gethostname} | #{Process.pid} | #{RubyApp::Session.exists? ? RubyApp::Session.session_id : '-'} | #{message}\n"
|
21
21
|
end
|
22
22
|
|
23
23
|
end
|
data/lib/ruby_app/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: RubyApp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 93
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 43
|
10
|
+
version: 0.5.43
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Frank G. Ficnar
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-06-
|
18
|
+
date: 2012-06-07 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|