me
/
guix
Archived
1
0
Fork 0

gnu: ruby-bindex: Update to 0.8.1 and rename to ruby-skiptrace.

* gnu/packages/ruby.scm (ruby-bindex): Update to 0.8.1 and rename to
ruby-skiptrace.
[arguments]: Update style, remove git dependency and replace check phase.
[description,home-page]: Update for rename.
* gnu/packages/rails.scm (ruby-web-console)[propagated-inputs]: Replace
ruby-bindex with ruby-skiptrace.
Christopher Baines 2023-06-21 10:05:53 +01:00
parent 191109ccff
commit 9dad3618cc
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
2 changed files with 19 additions and 9 deletions

View File

@ -1426,7 +1426,7 @@ Stimulus can be used.")
;; needs to be in the Gemfile to become available. ;; needs to be in the Gemfile to become available.
(("group :test do") "group :test do\n gem 'tzinfo-data'"))))))) (("group :test do") "group :test do\n gem 'tzinfo-data'")))))))
(propagated-inputs (propagated-inputs
(list ruby-actionview ruby-activemodel ruby-arel ruby-bindex ruby-railties)) (list ruby-actionview ruby-activemodel ruby-arel ruby-skiptrace ruby-railties))
(native-inputs (native-inputs
(list bundler ruby-rails ruby-mocha ruby-simplecov)) (list bundler ruby-rails ruby-mocha ruby-simplecov))
(synopsis "Debugging tool for your Ruby on Rails applications") (synopsis "Debugging tool for your Ruby on Rails applications")

View File

@ -9852,28 +9852,38 @@ is an infix boolean expression used by Cucumber.")
(home-page "https://github.com/cucumber/tag-expressions") (home-page "https://github.com/cucumber/tag-expressions")
(license license:expat))) (license license:expat)))
(define-public ruby-bindex (define-public ruby-skiptrace
(package (package
(name "ruby-bindex") (name "ruby-skiptrace")
(version "0.5.0") (version "0.8.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (rubygems-uri "bindex" version)) (uri (rubygems-uri "skiptrace" version))
(sha256 (sha256
(base32 (base32
"1wvhf4v8sk5x8li03pcc0v0wglmyv7ikvvg05bnms83dfy7s4k8i")))) "1qpjy6pqd8hx4w7bai64jsr10mwbpnnb65wcbssyqcnalimi1s12"))))
(build-system ruby-build-system) (build-system ruby-build-system)
(arguments (arguments
'(#:test-target "default")) (list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-git-from-gemspec
(lambda _
(substitute* "skiptrace.gemspec"
(("`git ls-files -z`") "`find . -type f -print0 |sort -z`"))))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "bundle" "exec" "rake" "default")))))))
(native-inputs (native-inputs
(list bundler ruby-rake-compiler)) (list bundler ruby-rake-compiler))
(synopsis "Provides access for bindings relating to Ruby exceptions") (synopsis "Provides access for bindings relating to Ruby exceptions")
(description (description
"@code{bindex} provides a way to access the bindings that relate to "@code{skiptrace} provides a way to access the bindings that relate to
exceptions in Ruby, providing more information about the context in which the exceptions in Ruby, providing more information about the context in which the
exception occurred.") exception occurred.")
(home-page "https://github.com/gsamokovarov/bindex") (home-page "https://github.com/gsamokovarov/skiptrace")
(license license:expat))) (license license:expat)))
(define-public ruby-bio-logger (define-public ruby-bio-logger