mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add ruby-open-uri-cached.
* gnu/packages/ruby.scm (ruby-open-uri-cached): New variable.
This commit is contained in:
parent
f421785bd7
commit
7d94616d2a
1 changed files with 21 additions and 0 deletions
|
@ -1670,6 +1670,27 @@ (define-public ruby-text-hyphen
|
||||||
;; versions of the LaTeX Project Public License.
|
;; versions of the LaTeX Project Public License.
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-open-uri-cached
|
||||||
|
(package
|
||||||
|
(name "ruby-open-uri-cached")
|
||||||
|
(version "0.0.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "open-uri-cached" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13xy2vhrgz9mdxhklw5fszhamsdxh8ysf3l40g92hqm4hm288wap"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f)) ;no test suite
|
||||||
|
(synopsis "OpenURI with transparent disk caching")
|
||||||
|
(description "OpenURI with transparent disk caching, which is
|
||||||
|
useful to avoid making excessive queries, for example when scraping
|
||||||
|
web pages.")
|
||||||
|
(home-page "https://github.com/tigris/open-uri-cached")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-ast
|
(define-public ruby-ast
|
||||||
(package
|
(package
|
||||||
(name "ruby-ast")
|
(name "ruby-ast")
|
||||||
|
|
Loading…
Reference in a new issue