[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/41: gnu: Add ruby-addressable.
From: |
julien lepiller |
Subject: |
06/41: gnu: Add ruby-addressable. |
Date: |
Sat, 1 Sep 2018 17:10:14 -0400 (EDT) |
roptat pushed a commit to branch master
in repository guix.
commit 6f2c4efb56520f8f63ee7f15f694f5582b4d04c4
Author: Julien Lepiller <address@hidden>
Date: Sun Aug 26 12:40:12 2018 +0200
gnu: Add ruby-addressable.
* gnu/package/ruby.scm (ruby-addressable): New variable.
---
gnu/packages/ruby.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 367832d..862193f 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -5121,3 +5121,26 @@ register names. Some examples of public suffixes are
@code{.com},
@code{.co.uk} and @code{pvt.k12.ma.us}. The Public Suffix List is a list of
all known public suffixes.")
(license license:expat)))
+
+(define-public ruby-addressable
+ (package
+ (name "ruby-addressable")
+ (version "2.5.2")
+ (source (origin
+ (method url-fetch)
+ (uri (rubygems-uri "addressable" version))
+ (sha256
+ (base32
+ "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk"))))
+ (build-system ruby-build-system)
+ (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
+is part of Ruby's standard library. It more closely conforms to RFC 3986,
+RFC 3987, and RFC 6570 (level 4), providing support for IRIs and URI
templates.")
+ (license license:asl2.0)))
- 10/41: gnu: Add ruby-rdoc., (continued)
- 10/41: gnu: Add ruby-rdoc., julien lepiller, 2018/09/01
- 11/41: gnu: Add ruby-sass-listen., julien lepiller, 2018/09/01
- 09/41: gnu: Add ruby-command-line-reporter-3., julien lepiller, 2018/09/01
- 08/41: gnu: Add ruby-command-line-reporter., julien lepiller, 2018/09/01
- 07/41: gnu: Add ruby-colorator., julien lepiller, 2018/09/01
- 05/41: gnu: Add ruby-public-suffix., julien lepiller, 2018/09/01
- 04/41: gnu: ruby-ttfunk: Update to 1.5.1., julien lepiller, 2018/09/01
- 02/41: gnu: ruby-i18n: Update to 1.1.0., julien lepiller, 2018/09/01
- 03/41: gnu: ruby-activesupport: Update to 5.2.1., julien lepiller, 2018/09/01
- 01/41: gnu: Add ruby-concurrent., julien lepiller, 2018/09/01
- 06/41: gnu: Add ruby-addressable.,
julien lepiller <=