Module: AirbrakeTasks
- Defined in:
- lib/airbrake_tasks.rb
Overview
Capistrano tasks for notifying Airbrake of deploys
Class Method Summary collapse
-
.deploy(opts = {}) ⇒ Object
Alerts Airbrake of a deploy.
Class Method Details
.deploy(opts = {}) ⇒ Object
Alerts Airbrake of a deploy.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/airbrake_tasks.rb', line 16 def self.deploy(opts = {}) if Airbrake.configuration.api_key.blank? puts "I don't seem to be configured with an API key. Please check your configuration." return false end if opts[:rails_env].blank? puts "I don't know to which Rails environment you are deploying (use the TO=production option)." return false end dry_run = opts.delete(:dry_run) params = {'api_key' => opts.delete(:api_key) || Airbrake.configuration.api_key} opts.each {|k,v| params["deploy[#{k}]"] = v } host = Airbrake.configuration.host || 'airbrake.io' port = Airbrake.configuration.port proxy = Net::HTTP.Proxy(Airbrake.configuration.proxy_host, Airbrake.configuration.proxy_port, Airbrake.configuration.proxy_user, Airbrake.configuration.proxy_pass) http = proxy.new(host, port) # Handle Security if Airbrake.configuration.secure? http.use_ssl = true http.ca_file = Airbrake.configuration.ca_bundle_path end post = Net::HTTP::Post.new("/deploys.txt") post.set_form_data(params) if dry_run puts http.inspect, params.inspect return true else response = http.request(post) puts response.body return Net::HTTPSuccess === response end end |