gnu: ruby-addressable: Enable tests and update.

* gnu/packages/ruby.scm (ruby-addressable): Update to 2.6.0.
[arguments]: Enable running the tests.
[native-inputs]: Add inputs required for running the tests.
master
Christopher Baines 2019-01-27 19:44:26 +00:00
parent f3d7bb9323
commit 0a794b3075
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 26 additions and 5 deletions

View File

@ -6239,19 +6239,40 @@ all known public suffixes.")
(define-public ruby-addressable
(package
(name "ruby-addressable")
(version "2.5.2")
(version "2.6.0")
(source (origin
(method url-fetch)
(uri (rubygems-uri "addressable" version))
(sha256
(base32
"0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk"))))
"0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l"))))
(build-system ruby-build-system)
(arguments
'(#:test-target "spec"
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'remove-unnecessary-dependencies-from-Gemfile
(lambda _
(substitute* "Gemfile"
(("git: 'https://github.com/sporkmonger/rack-mount.git',") "")
((".*launchy.*") "")
((".*rake.*") "gem 'rake'\n")
((".*redcarpet.*") ""))
#t))
(add-before 'check 'delete-network-dependent-test
(lambda _
(delete-file "spec/addressable/net_http_compat_spec.rb")
#t)))))
(native-inputs
`(("ruby-rspec" ,ruby-rspec)
("bundler" ,bundler)
("ruby-idn-ruby" ,ruby-idn-ruby)
("ruby-sporkmonger-rack-mount" ,ruby-sporkmonger-rack-mount)
("ruby-rspec-its", ruby-rspec-its)
("ruby-yard" ,ruby-yard)
("ruby-simplecov" ,ruby-simplecov)))
(propagated-inputs
`(("ruby-public-suffix" ,ruby-public-suffix)))
(arguments
;; No test target
`(#:tests? #f))
(home-page "https://github.com/sporkmonger/addressable")
(synopsis "Alternative URI implementation")
(description "Addressable is a replacement for the URI implementation that