namespace :hoptoad do desc "Notify Hoptoad of a new deploy." task :deploy => :environment do require 'hoptoad_tasks' HoptoadTasks.deploy(:rails_env => ENV['TO'], :scm_revision => ENV['REVISION'], :scm_repository => ENV['REPO'], :local_username => ENV['USER'], :api_key => ENV['API_KEY']) end task :log_stdout do require 'logger' RAILS_DEFAULT_LOGGER = Logger.new(STDOUT) end desc "Verify your gem installation by sending a test exception to the hoptoad service" task :test => ['hoptoad:log_stdout', :environment] do RAILS_DEFAULT_LOGGER.level = Logger::DEBUG require 'action_controller/test_process' require 'app/controllers/application' if File.exists?('app/controllers/application.rb') request = ActionController::TestRequest.new response = ActionController::TestResponse.new class HoptoadTestingException < RuntimeError; end unless HoptoadNotifier.configuration.api_key puts "Hoptoad needs an API key configured! Check the README to see how to add it." exit end HoptoadNotifier.configuration.development_environments = [] in_controller = ApplicationController.included_modules.include? HoptoadNotifier::Catcher in_base = ActionController::Base.included_modules.include? HoptoadNotifier::Catcher if !in_controller || !in_base puts "HoptoadNotifier::Catcher must be included inside your ApplicationController class." exit end puts "Configuration:" HoptoadNotifier.configuration.to_hash.each do |key, value| puts sprintf("%25s: %s", key.to_s, value.inspect.slice(0, 55)) end puts 'Setting up the Controller.' class ApplicationController # This is to bypass any filters that may prevent access to the action. prepend_before_filter :test_hoptoad def test_hoptoad puts "Raising '#{exception_class.name}' to simulate application failure." raise exception_class.new, 'Testing hoptoad via "rake hoptoad:test". If you can see this, it works.' end def rescue_action exception rescue_action_in_public exception end # Ensure we actually have an action to go to. def verify; end def consider_all_requests_local false end def local_request? false end def exception_class exception_name = ENV['EXCEPTION'] || "HoptoadTestingException" Object.const_get(exception_name) rescue Object.const_set(exception_name, Class.new(Exception)) end def logger nil end end puts 'Processing request.' class HoptoadVerificationController < ApplicationController; end HoptoadVerificationController.new.process(request, response) end end