gnu: Add ruby-pry-stack-explorer.
* gnu/packages/ruby.scm (ruby-pry-stack-explorer): New variable.
This commit is contained in:
parent
4d31fe6b6c
commit
f4699abc26
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
(home-page "https://github.com/banister/binding_of_caller")
|
||||||
(license license:expat)))
|
(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
|
(define-public ruby-gherkin
|
||||||
(package
|
(package
|
||||||
(name "ruby-gherkin")
|
(name "ruby-gherkin")
|
||||||
|
|
Reference in a new issue