Fix requires for 1.9 build. Hopefully now it will just fail for perf reasons :p
This commit is contained in:
parent
29d23d9f43
commit
a80179e77f
2 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ module ActionDispatch
|
||||||
end
|
end
|
||||||
|
|
||||||
class ActionController::LogSubscriber
|
class ActionController::LogSubscriber
|
||||||
require 'lib/active_record_instantiation_logs'
|
require "#{File.dirname(__FILE__)}/active_record_instantiation_logs.rb"
|
||||||
include Oink::InstanceTypeCounter
|
include Oink::InstanceTypeCounter
|
||||||
def start_processing(event)
|
def start_processing(event)
|
||||||
#noop
|
#noop
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
# the COPYRIGHT file.
|
# the COPYRIGHT file.
|
||||||
|
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
require 'lib/pubsubhubbub'
|
require "#{Rails.root}/lib/pubsubhubbub"
|
||||||
|
|
||||||
describe Job::PublishToHub do
|
describe Job::PublishToHub do
|
||||||
describe '.perform' do
|
describe '.perform' do
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue