gnu: ruby-spy: Remove ruby-pry-byebug input.

* gnu/packages/ruby.scm (ruby-spy)[arguments]: Remove use of pry-byebug.
[native-inputs]: Remove ruby-pry-byebug.
This commit is contained in:
Christopher Baines 2023-06-29 11:42:47 +01:00
parent 9bdb1c4baa
commit a820891c89
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -14310,6 +14310,10 @@ (define-public ruby-spy
(list #:phases #~(modify-phases %standard-phases (list #:phases #~(modify-phases %standard-phases
(add-after 'extract-gemspec 'relax-requirements (add-after 'extract-gemspec 'relax-requirements
(lambda _ (lambda _
(substitute* "spy.gemspec"
((".*pry-byebug.*") ""))
(substitute* "test/test_helper.rb"
((".*pry-byebug.*") ""))
(substitute* "Gemfile" (substitute* "Gemfile"
((".*redcarpet.*") "") ((".*redcarpet.*") "")
((".*yard.*") ""))))))) ((".*yard.*") "")))))))
@ -14317,7 +14321,6 @@ (define-public ruby-spy
(list ruby-coveralls (list ruby-coveralls
ruby-minitest-reporters ruby-minitest-reporters
ruby-pry ruby-pry
ruby-pry-byebug
ruby-rspec-core ruby-rspec-core
ruby-rspec-expectations)) ruby-rspec-expectations))
(synopsis "Mocking library for Ruby") (synopsis "Mocking library for Ruby")