fix startup error for integration envs

This commit is contained in:
Florian Staudacher 2012-06-15 01:15:45 +02:00
parent 6546f63208
commit 0ce411c11c
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ Diaspora::Application.configure do
"<#{self.class.name} - tooooo long>" "<#{self.class.name} - tooooo long>"
end end
end end
[ActionController::Base, ActionDispatch::RemoteIp::RemoteIpGetter, OmniAuth::Strategy, Warden::Proxy].each do |klazz| [ActionController::Base, OmniAuth::Strategy, Warden::Proxy].each do |klazz|
klazz.send(:include, SmallInspect) klazz.send(:include, SmallInspect)
end end
end end

View file

@ -32,7 +32,7 @@ Diaspora::Application.configure do
"<#{self.class.name} - tooooo long>" "<#{self.class.name} - tooooo long>"
end end
end end
[ActionController::Base, ActionDispatch::RemoteIp::RemoteIpGetter, OmniAuth::Strategy, Warden::Proxy].each do |klazz| [ActionController::Base, OmniAuth::Strategy, Warden::Proxy].each do |klazz|
klazz.send(:include, SmallInspect) klazz.send(:include, SmallInspect)
end end
end end