mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Remove ruby-gimme.
* gnu/packages/ruby.scm (ruby-gimme): Delete variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
6dda9f8ff6
commit
6b0d5f8c58
1 changed files with 0 additions and 59 deletions
|
@ -2254,65 +2254,6 @@ for performance optimizations in Ruby code.")
|
||||||
(propagated-inputs '())
|
(propagated-inputs '())
|
||||||
(native-inputs '()))))
|
(native-inputs '()))))
|
||||||
|
|
||||||
(define-public ruby-gimme
|
|
||||||
(let ((revision "1")
|
|
||||||
(commit "4e71f0236f1271871916dd403261d26533db34c0"))
|
|
||||||
(package
|
|
||||||
(name "ruby-gimme")
|
|
||||||
(version (git-version "0.5.0" revision commit))
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/searls/gimme")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0hrd32ygvf3i7h47ak8f623cz8ns9q7g60nnnvvlnywbggjaz3h6"))))
|
|
||||||
(build-system ruby-build-system)
|
|
||||||
(native-inputs
|
|
||||||
(list ruby-coveralls ruby-cucumber ruby-pry ruby-simplecov
|
|
||||||
ruby-rspec-given))
|
|
||||||
(arguments
|
|
||||||
`(;; The cucumber task fails with error: "index 3 out of matches
|
|
||||||
;; (IndexError)", apparently due to our newer Cucumber version.
|
|
||||||
;; TODO: Try the "default" task with a future release.
|
|
||||||
#:test-target "spec"
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'extract-gemspec 'prepare-for-tests
|
|
||||||
(lambda _
|
|
||||||
;; Delete failing tests (possibly due to our newer rspec
|
|
||||||
;; version).
|
|
||||||
(delete-file "spec/gimme/gives_class_methods_spec.rb")
|
|
||||||
(delete-file "spec/gimme/rspec_adapter_spec.rb")
|
|
||||||
(delete-file "spec/gimme/verifies_class_methods_spec.rb")
|
|
||||||
;; Fix duplicate version requirements and de-register files.
|
|
||||||
(delete-file "Gemfile")
|
|
||||||
(delete-file "Gemfile.lock")
|
|
||||||
(substitute* "gimme.gemspec"
|
|
||||||
((".*\"Gemfile\".*") "")
|
|
||||||
((".*\"Gemfile\\.lock\",.*") "")
|
|
||||||
((".*(rspec|cucumber).*\">= 0\".*") "")
|
|
||||||
(("\"spec/gimme/gives_class_methods_spec.rb\",") "")
|
|
||||||
(("\"spec/gimme/rspec_adapter_spec.rb\",") "")
|
|
||||||
(("\"spec/gimme/verifies_class_methods_spec.rb\",") "")
|
|
||||||
;; All of these gems relate to development, and are
|
|
||||||
;; unnecessary when running the tests.
|
|
||||||
((".*(add|gem).*guard-.*") "")
|
|
||||||
((".*(add|gem).*jeweler.*") "")
|
|
||||||
((".*(add|gem).*pry.*") "")
|
|
||||||
((".*(add|gem).*growl.*") "")
|
|
||||||
((".*(add|gem).*rb-fsevent.*") "")))))))
|
|
||||||
(synopsis "Lightweight test double library for Ruby")
|
|
||||||
(description "Gimme is a very lightweight test double library for Ruby,
|
|
||||||
based on Mockito (a mocking framework for Java). It is an opinionated (but
|
|
||||||
not noisy) means to facilitate test-driving by enabling the authors to specify
|
|
||||||
only what they care about.")
|
|
||||||
(home-page "https://github.com/searls/gimme")
|
|
||||||
(license license:expat))))
|
|
||||||
|
|
||||||
(define-public ruby-stud
|
(define-public ruby-stud
|
||||||
(package
|
(package
|
||||||
(name "ruby-stud")
|
(name "ruby-stud")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue