me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-pry-stack-explorer.

* gnu/packages/ruby.scm (ruby-pry-stack-explorer): New variable.
master
Maxim Cournoyer 2020-07-01 00:09:07 -04:00
parent 4d31fe6b6c
commit f4699abc26
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 22 additions and 0 deletions

View File

@ -6297,6 +6297,28 @@ frames in the call stack and can evaluate code in that context.")
(home-page "https://github.com/banister/binding_of_caller")
(license license:expat)))
(define-public ruby-pry-stack-explorer
(package
(name "ruby-pry-stack-explorer")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "pry-stack_explorer" version))
(sha256
(base32
"157rd2n9pfvcmmicm0xkq8z4p6famaj13syrpra6b4032qpb1wn0"))))
(build-system ruby-build-system)
(arguments '(#:tests? #f)) ;no test suite in gem release
(propagated-inputs
`(("ruby-binding-of-caller" ,ruby-binding-of-caller)
("ruby-pry" ,ruby-pry)))
(synopsis "Call-stack navigation plugin for the Pry REPL")
(description "@code{pry-stack_explorer} is a plugin for the Pry REPL that
add support to navigate the call-stack.")
(home-page "https://github.com/pry/pry-stack_explorer")
(license license:expat)))
(define-public ruby-gherkin
(package
(name "ruby-gherkin")