2014-06-12 5 views
1

특정 예외를 잡아서 수동으로 errbit에 기록한 다음 사용자에게 오류 메시지를 표시하고 리디렉션하려고합니다. 내 모델에서 아래의 코드와 Unintialized constant Airbrake

, 나는 오류

# Causes uninitialized constant Issue::Airbrake 

어떻게 수동으로 오류가 errbit에 로그인 할 수 있습니다? 나는 4.0.0

class Issue < ActiveRecord::Base 
    after_create :send_email 

    def send_email 
    begin 
    raise StandardError 
    rescue StandardError => e 
     # Log error in errbit manually 
     Airbrake.notify(e) # Causes uninitialized constant Issue::Airbrake 
    end 
    end 

답변

2

내 Gemfile에 생산 그룹에서 에어 브레이크 보석을 이동했다 에어 브레이크 보석 버전을 사용하고 있습니다.