all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#57542] [PATCH 0/2] Add ruby-pry-doc
@ 2022-09-02  9:00 Taiju HIGASHI
  2022-09-02  9:03 ` [bug#57542] [PATCH 1/2] gnu: Add ruby-latest-ruby Taiju HIGASHI
  2022-09-02 18:56 ` bug#57542: [PATCH 0/2] " Christopher Baines
  0 siblings, 2 replies; 4+ messages in thread
From: Taiju HIGASHI @ 2022-09-02  9:00 UTC (permalink / raw)
  To: 57542; +Cc: Taiju HIGASHI

Hi,

I'm setting up a Ruby development environment on Emacs with Guix.
I want to add ruby-pry-doc because the official Guix channel distributes
emacs-robe and ruby-pry (emacs-robe required pry), but ruby-pry-doc is not.
(Strictly speaking, installing pry-doc when using robe is optional, but it is
inconvenient without it.)

Thanks,
taiju

Taiju HIGASHI (2):
  gnu: Add ruby-latest-ruby.
  gnu: Add ruby-pry-doc.

 gnu/packages/ruby.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

--
2.37.2




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#57542] [PATCH 1/2] gnu: Add ruby-latest-ruby.
  2022-09-02  9:00 [bug#57542] [PATCH 0/2] Add ruby-pry-doc Taiju HIGASHI
@ 2022-09-02  9:03 ` Taiju HIGASHI
  2022-09-02  9:03   ` [bug#57542] [PATCH 2/2] gnu: Add ruby-pry-doc Taiju HIGASHI
  2022-09-02 18:56 ` bug#57542: [PATCH 0/2] " Christopher Baines
  1 sibling, 1 reply; 4+ messages in thread
From: Taiju HIGASHI @ 2022-09-02  9:03 UTC (permalink / raw)
  To: 57542; +Cc: Taiju HIGASHI

* gnu/packages/ruby.scm (ruby-latest-ruby): New variable.
---
 gnu/packages/ruby.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index a2cafbf1f1..d658581ed0 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -30,6 +30,7 @@
 ;;; Copyright © 2021 Giovanni Biscuolo <g@xelera.eu>
 ;;; Copyright © 2022 Philip McGrath <philip@philipmcgrath.com>
 ;;; Copyright © 2022 Remco van 't Veer <remco@remworks.net>
+;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5398,6 +5399,24 @@ (define-public ruby-progressbar
     (home-page "https://github.com/jfelchner/ruby-progressbar")
     (license license:expat)))
 
+(define-public ruby-latest-ruby
+  (package
+    (name "ruby-latest-ruby")
+    (version "3.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "latest_ruby" version))
+              (sha256
+               (base32
+                "15rqwgxzpnkzdiz8m02jra0zq5sx0fiz61vkfrj1ls6slqfhnzqg"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; No Rakefile
+    (synopsis "Answers the question of what the latest Ruby version is")
+    (description "Knows about MRI, Rubinius, JRuby, MagLev and MacRuby.")
+    (home-page "https://github.com/kyrylo/latest_ruby")
+    (license license:zlib)))
+
 (define-public ruby-pry
   (package
     (name "ruby-pry")
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#57542] [PATCH 2/2] gnu: Add ruby-pry-doc.
  2022-09-02  9:03 ` [bug#57542] [PATCH 1/2] gnu: Add ruby-latest-ruby Taiju HIGASHI
@ 2022-09-02  9:03   ` Taiju HIGASHI
  0 siblings, 0 replies; 4+ messages in thread
From: Taiju HIGASHI @ 2022-09-02  9:03 UTC (permalink / raw)
  To: 57542; +Cc: Taiju HIGASHI

* gnu/packages/ruby.scm (ruby-pry-doc): 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 d658581ed0..94c3bfeb6f 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -5440,6 +5440,29 @@ (define-public ruby-pry
     (home-page "https://cobaltbluemedia.com/pryrepl/")
     (license license:expat)))
 
+(define-public ruby-pry-doc
+  (package
+    (name "ruby-pry-doc")
+    (version "1.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "pry-doc" version))
+              (sha256
+               (base32
+                "0wyvql6pb6m8jl8bsamabxhxhd86bnqblspaxzz05sl0fm2ynj0r"))))
+    (build-system ruby-build-system)
+    (propagated-inputs (list ruby-pry ruby-yard))
+    (native-inputs (list ruby-latest-ruby ruby-rspec ruby-rake)) ;for tests
+    (synopsis "Provides YARD and extended documentation support for Pry")
+    (description
+     "Pry Doc is a Pry REPL plugin.  It provides extended documentation
+support for the REPL by means of improving the @code{show-doc} and
+@code{show-source} commands.  With help of the plugin the commands are
+be able to display the source code and the docs of Ruby methods and
+classes implemented in C.")
+    (home-page "https://github.com/pry/pry-doc")
+    (license license:expat)))
+
 (define-public ruby-single-cov
   (package
     (name "ruby-single-cov")
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#57542: [PATCH 0/2] Add ruby-pry-doc
  2022-09-02  9:00 [bug#57542] [PATCH 0/2] Add ruby-pry-doc Taiju HIGASHI
  2022-09-02  9:03 ` [bug#57542] [PATCH 1/2] gnu: Add ruby-latest-ruby Taiju HIGASHI
@ 2022-09-02 18:56 ` Christopher Baines
  1 sibling, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2022-09-02 18:56 UTC (permalink / raw)
  To: Taiju HIGASHI; +Cc: 57542-done

[-- Attachment #1: Type: text/plain, Size: 686 bytes --]


Taiju HIGASHI <higashi@taiju.info> writes:

> I'm setting up a Ruby development environment on Emacs with Guix.
> I want to add ruby-pry-doc because the official Guix channel distributes
> emacs-robe and ruby-pry (emacs-robe required pry), but ruby-pry-doc is not.
> (Strictly speaking, installing pry-doc when using robe is optional, but it is
> inconvenient without it.)
>
> Thanks,
> taiju
>
> Taiju HIGASHI (2):
>   gnu: Add ruby-latest-ruby.
>   gnu: Add ruby-pry-doc.
>
>  gnu/packages/ruby.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 42 insertions(+)

Thanks Taiju, I've gone ahead and pushed these as
34766a6631c97af0f13af6c16e1c9d26780e5cb5.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-02 18:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-02  9:00 [bug#57542] [PATCH 0/2] Add ruby-pry-doc Taiju HIGASHI
2022-09-02  9:03 ` [bug#57542] [PATCH 1/2] gnu: Add ruby-latest-ruby Taiju HIGASHI
2022-09-02  9:03   ` [bug#57542] [PATCH 2/2] gnu: Add ruby-pry-doc Taiju HIGASHI
2022-09-02 18:56 ` bug#57542: [PATCH 0/2] " Christopher Baines

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.