all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#27233: [PATCH] gnu: Add emacs-inf-ruby
@ 2017-06-04 12:53 Christopher Baines
  2017-06-04 17:40 ` Leo Famulari
  2017-06-16 13:13 ` Alex Kost
  0 siblings, 2 replies; 8+ messages in thread
From: Christopher Baines @ 2017-06-04 12:53 UTC (permalink / raw)
  To: 27233

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 81a74d1fb..d067719c5 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1740,6 +1740,29 @@ keep pressing the key until it selects what you want.  There's also
 column by drawing a thin line down the length of the editing window.")
     (license license:gpl3+)))
 
+(define-public emacs-inf-ruby
+  (package
+    (name "emacs-inf-ruby")
+    (version "2.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
+                           "archive/" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/nonsequitur/inf-ruby")
+    (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
+    (description
+     "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
+for easy interaction with a ruby subprocess.  Features include support for
+detecting specific uses of Ruby, e.g. when using rails, and using a
+appropriate console.")
+    (license license:gpl3+)))
+
 (define-public emacs-znc
   (package
     (name "emacs-znc")
-- 
2.13.0

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

* bug#27233: [PATCH] gnu: Add emacs-inf-ruby
  2017-06-04 12:53 bug#27233: [PATCH] gnu: Add emacs-inf-ruby Christopher Baines
@ 2017-06-04 17:40 ` Leo Famulari
  2017-06-16 13:13 ` Alex Kost
  1 sibling, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2017-06-04 17:40 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 27233

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

On Sun, Jun 04, 2017 at 01:53:28PM +0100, Christopher Baines wrote:
> * gnu/packages/emacs.scm (emacs-inf-ruby): New variable.

LGTM

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

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

* bug#27233: [PATCH] gnu: Add emacs-inf-ruby
  2017-06-04 12:53 bug#27233: [PATCH] gnu: Add emacs-inf-ruby Christopher Baines
  2017-06-04 17:40 ` Leo Famulari
@ 2017-06-16 13:13 ` Alex Kost
  2017-06-16 13:21   ` [bug#27233] " Ludovic Courtès
  2017-06-16 13:51   ` Christopher Baines
  1 sibling, 2 replies; 8+ messages in thread
From: Alex Kost @ 2017-06-16 13:13 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 27233-done

Christopher Baines (2017-06-04 13:53 +0100) wrote:

> * gnu/packages/emacs.scm (emacs-inf-ruby): New variable.
> ---
>  gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)

Committed, thanks!  Sorry for the delay, I thought (and probably Leo as
well) that you have commit access to the guix repo.

If you would like to be able to push commits yourself, I'm sure Ludovic
or Ricardo will provide you these rights :-)

-- 
Alex

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

* [bug#27233] [PATCH] gnu: Add emacs-inf-ruby
  2017-06-16 13:13 ` Alex Kost
@ 2017-06-16 13:21   ` Ludovic Courtès
  2017-06-16 13:54     ` Christopher Baines
  2017-06-16 13:51   ` Christopher Baines
  1 sibling, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2017-06-16 13:21 UTC (permalink / raw)
  To: 27233; +Cc: alezost

Howdy!

Alex Kost <alezost@gmail.com> skribis:

> If you would like to be able to push commits yourself, I'm sure Ludovic
> or Ricardo will provide you these rights :-)

I think I proposed it before, or at least I thought about it.  Anyway,
what’s your Savannah account Christopher?  :-)

BTW, I think other committers can feel entitled to add new hackers to
the list of committers.  That will help the project scale better.

Thanks,
Ludo’.

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

* [bug#27233] [PATCH] gnu: Add emacs-inf-ruby
  2017-06-16 13:13 ` Alex Kost
  2017-06-16 13:21   ` [bug#27233] " Ludovic Courtès
@ 2017-06-16 13:51   ` Christopher Baines
  1 sibling, 0 replies; 8+ messages in thread
From: Christopher Baines @ 2017-06-16 13:51 UTC (permalink / raw)
  To: Alex Kost; +Cc: 27233-done


[-- Attachment #1.1: Type: text/plain, Size: 415 bytes --]

On 16/06/17 14:13, Alex Kost wrote:
> Christopher Baines (2017-06-04 13:53 +0100) wrote:
> 
>> * gnu/packages/emacs.scm (emacs-inf-ruby): New variable.
>> ---
>>  gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
>>  1 file changed, 23 insertions(+)
> 
> Committed, thanks!  Sorry for the delay, I thought (and probably Leo as
> well) that you have commit access to the guix repo.

Great, thanks.



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 858 bytes --]

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

* [bug#27233] [PATCH] gnu: Add emacs-inf-ruby
  2017-06-16 13:21   ` [bug#27233] " Ludovic Courtès
@ 2017-06-16 13:54     ` Christopher Baines
  2017-06-16 14:54       ` Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Christopher Baines @ 2017-06-16 13:54 UTC (permalink / raw)
  To: Ludovic Courtès, 27233


[-- Attachment #1.1: Type: text/plain, Size: 465 bytes --]

On 16/06/17 14:21, Ludovic Courtès wrote:
> Howdy!
> 
> Alex Kost <alezost@gmail.com> skribis:
> 
>> If you would like to be able to push commits yourself, I'm sure Ludovic
>> or Ricardo will provide you these rights :-)
> 
> I think I proposed it before, or at least I thought about it.  Anyway,
> what’s your Savannah account Christopher?  :-)

I did get a message on IRC, but I missed it by a few days. My Savannah
account username is cbaines.


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 858 bytes --]

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

* [bug#27233] [PATCH] gnu: Add emacs-inf-ruby
  2017-06-16 13:54     ` Christopher Baines
@ 2017-06-16 14:54       ` Ludovic Courtès
  2017-06-16 16:23         ` Christopher Baines
  0 siblings, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2017-06-16 14:54 UTC (permalink / raw)
  To: Christopher Baines; +Cc: Ricardo Wurmus, 27233

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

Christopher Baines <mail@cbaines.net> skribis:

> On 16/06/17 14:21, Ludovic Courtès wrote:
>> Howdy!
>> 
>> Alex Kost <alezost@gmail.com> skribis:
>> 
>>> If you would like to be able to push commits yourself, I'm sure Ludovic
>>> or Ricardo will provide you these rights :-)
>> 
>> I think I proposed it before, or at least I thought about it.  Anyway,
>> what’s your Savannah account Christopher?  :-)
>
> I did get a message on IRC, but I missed it by a few days. My Savannah
> account username is cbaines.

Awesome, I’ve added you.  Could you reply to this message, signed with
the OpenPGP key that you’ll use to sign commit (which presumably is the
one you uploaded at <https://savannah.gnu.org/users/cbaines>)?

After that please make sure to (re)read ‘HACKING’ and you’ll be all set.

Thank you, and “welcome” if that’s something we can say to an old timer!
;-)

Ludo’.

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

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

* [bug#27233] [PATCH] gnu: Add emacs-inf-ruby
  2017-06-16 14:54       ` Ludovic Courtès
@ 2017-06-16 16:23         ` Christopher Baines
  0 siblings, 0 replies; 8+ messages in thread
From: Christopher Baines @ 2017-06-16 16:23 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Ricardo Wurmus, 27233


[-- Attachment #1.1: Type: text/plain, Size: 1214 bytes --]

On 16/06/17 15:54, Ludovic Courtès wrote:
> Christopher Baines <mail@cbaines.net> skribis:
> 
>> On 16/06/17 14:21, Ludovic Courtès wrote:
>>> Howdy!
>>>
>>> Alex Kost <alezost@gmail.com> skribis:
>>>
>>>> If you would like to be able to push commits yourself, I'm sure Ludovic
>>>> or Ricardo will provide you these rights :-)
>>>
>>> I think I proposed it before, or at least I thought about it.  Anyway,
>>> what’s your Savannah account Christopher?  :-)
>>
>> I did get a message on IRC, but I missed it by a few days. My Savannah
>> account username is cbaines.
> 
> Awesome, I’ve added you.  Could you reply to this message, signed with
> the OpenPGP key that you’ll use to sign commit (which presumably is the
> one you uploaded at <https://savannah.gnu.org/users/cbaines>)?

Great :) This email should be signed. Ignore the key on Savannah as it
appears to be incomplete and I haven't worked out yet how to fix it
(when I attempt to paste the key in to the box, it's truncated...).

> After that please make sure to (re)read ‘HACKING’ and you’ll be all set.
> 
> Thank you, and “welcome” if that’s something we can say to an old timer!
> ;-)

Thanks :)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 858 bytes --]

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

end of thread, other threads:[~2017-06-16 16:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-04 12:53 bug#27233: [PATCH] gnu: Add emacs-inf-ruby Christopher Baines
2017-06-04 17:40 ` Leo Famulari
2017-06-16 13:13 ` Alex Kost
2017-06-16 13:21   ` [bug#27233] " Ludovic Courtès
2017-06-16 13:54     ` Christopher Baines
2017-06-16 14:54       ` Ludovic Courtès
2017-06-16 16:23         ` Christopher Baines
2017-06-16 13:51   ` 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.