From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37010) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dokd8-0005R3-Lf for guix-patches@gnu.org; Mon, 04 Sep 2017 02:13:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dokd4-0002Z9-NB for guix-patches@gnu.org; Mon, 04 Sep 2017 02:13:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38814) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dokd4-0002Yy-JA for guix-patches@gnu.org; Mon, 04 Sep 2017 02:13:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dokd4-0003dz-Dv for guix-patches@gnu.org; Mon, 04 Sep 2017 02:13:02 -0400 Subject: [bug#28200] [PATCH] gnu: Add emacs-rspec. References: <20170823093521.8514-1-mail@cbaines.net> In-Reply-To: <20170823093521.8514-1-mail@cbaines.net> Resent-Message-ID: From: Christopher Baines Date: Mon, 4 Sep 2017 07:12:54 +0100 Message-Id: <20170904061254.24476-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28200@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-rspec): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 8955313e5..efb9e42a0 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1968,6 +1968,31 @@ tables.") mode-line.") (license license:gpl2+))) +(define-public emacs-rspec + (package + (name "emacs-rspec") + (version "1.11") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/pezra/rspec-mode/" + "archive/v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw")))) + (build-system emacs-build-system) + (home-page "https://github.com/pezra/rspec-mode") + (synopsis "Provides a rspec mode for working with RSpec") + (description + "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to +verify the spec associated with the current buffer, or entire project, as well +as moving between the spec files, and coresponding code files. + +Also included are keybindings for spec files and Dired buffers, as well as +snippets for yasnippet.") + (license license:gpl3+))) + (define-public emacs-smart-mode-line (package (name "emacs-smart-mode-line") -- 2.14.1