guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: Add ruby-pry.


From: David Thompson
Subject: 04/04: gnu: Add ruby-pry.
Date: Sun, 06 Sep 2015 13:12:53 +0000

davexunit pushed a commit to branch master
in repository guix.

commit 96e76083b82659429cd46e9abe2323678fd98e87
Author: David Thompson <address@hidden>
Date:   Sat Aug 29 22:54:24 2015 -0400

    gnu: Add ruby-pry.
    
    * gnu/packages/ruby.scm (ruby-pry): New variable.
---
 gnu/packages/ruby.scm |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index b85bf82..d3babbe 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -896,3 +896,28 @@ extract comments.")
 for select languages.")
     (home-page "http://coderay.rubychan.de";)
     (license license:expat)))
+
+(define-public ruby-pry
+  (package
+    (name "ruby-pry")
+    (version "0.10.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "pry" version))
+       (sha256
+        (base32
+         "1j0r5fm0wvdwzbh6d6apnp7c0n150hpm9zxpm5xvcgfqr36jaj8z"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; no tests
+    (propagated-inputs
+     `(("ruby-coderay" ,ruby-coderay)
+       ("ruby-method-source" ,ruby-method-source)
+       ("ruby-slop" ,ruby-slop-3)))
+    (synopsis "Ruby REPL")
+    (description "Pry is an IRB alternative and runtime developer console for
+Ruby.  It features syntax highlighting, a plugin architecture, runtime
+invocation, and source and documentation browsing.")
+    (home-page "http://pryrepl.org";)
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]