mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt ruby_pry_byebug to updater-ruby_pry_byebug-3.12.0-ruby4.0 * updater-ruby_pry_byebug-3.12.0-ruby4.0: Package File Update Run on linux/386 container. * updater-ruby_pry_byebug-3.12.0-ruby4.0: Package File Update Run on linux/amd64 container. * updater-ruby_pry_byebug-3.12.0-ruby4.0: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
16 lines
410 B
Ruby
16 lines
410 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_pry_byebug < RUBY
|
|
description 'Adds step-by-step debugging and stack navigation capabilities to pry using byebug.'
|
|
homepage 'https://github.com/deivid-rodriguez/pry-byebug'
|
|
version "3.12.0-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_byebug' # L
|
|
depends_on 'ruby_pry' # L
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|