Skip to content

Uploads sourcemaps to Honeybadger as a part of the Capistrano deploy process

License

Notifications You must be signed in to change notification settings

wesklei/capistrano-honeybadger-sourcemaps

Repository files navigation

Capistrano Honeybadger Sourcemaps

Uploads sourcemaps for your application as a part of the Capistrano deploy process. See the Honeybadger docs for more information on source map support in Honeybadger.

Installation

Add this line to your application's Gemfile:

gem 'capistrano-honeybadger-sourcemaps'

And then execute:

$ bundle

Usage

In your Capfile:

require 'capistrano/honeybadger/sourcemaps'

The task will run after deploy:set_current_revision by default

Configurable options

Required

# For generating the minified_url that is passed to honeybadger on upload
set :honeybadger_sourcemaps_minified_url_base, 'http:https://www.example.com'

# Directory that will be searched for source maps to upload
set :honeybadger_sourcemaps_target_dir, './cache/my_app'

Optional

# honeybadger api key. Defaults to the honeybadger_api_key used by the honeybadger gem
set :honeybadger_sourcemaps_api_key, -> { fetch :honeybadger_api_key }

# Version of the sourcemaps for honeybadger. Uses the current_revision by default
set :honeybadger_sourcemaps_version, -> { fetch :current_revision }

# Glob pattern used to search for sourcemaps in the target_dir
set :honeybadger_sourcemaps_glob_pattern, File.join('**', '*.js.map')

# Gsub pattern used to convert a sourcemap file to the associated JS file
set :honeybadger_sourcemaps_gsub_pattern, /\.map\Z/

# Role under which sourcemaps should be uploaded
set :honeybadger_sourcemaps_role, :sourcemaps

About

Uploads sourcemaps to Honeybadger as a part of the Capistrano deploy process

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages