From mboxrd@z Thu Jan 1 00:00:00 1970 From: pjotr2015@thebird.nl (Pjotr Prins) Subject: (unknown) Date: Tue, 15 Sep 2015 16:35:39 +0200 Message-ID: <20150915143539.E39DD40060@mail.thebird.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbrMd-0004Nm-Ph for guix-devel@gnu.org; Tue, 15 Sep 2015 10:37:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbrMa-0003GG-Vi for guix-devel@gnu.org; Tue, 15 Sep 2015 10:37:43 -0400 Received: from mail.thebird.nl ([95.154.246.10]:54274) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbrMa-0003Fb-OU for guix-devel@gnu.org; Tue, 15 Sep 2015 10:37:40 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org >From f8493e0e3e4520bb4de4fd20e93d325444332dc3 Mon Sep 17 00:00:00 2001 Date: Tue, 15 Sep 2015 14:21:17 +0000 Subject: [PATCH] gnu: Add ruby-gherkin3 To: guix-devel@gnu.org From: pjotr.public12@thebird.nl * gnu/packages/ruby.scm (ruby-gherkin3): New variable. --- gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ee0acc8..4756cd4 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1124,3 +1124,28 @@ it unifies the API for web servers, web frameworks, and software in between into a single method call.") (home-page "http://rack.github.io/") (license license:expat))) + +(define-public ruby-gherkin3 + (package + (name "ruby-gherkin3") + (version "3.1.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "gherkin3" version)) + (sha256 + (base32 + "0xsyxhqa1gwcxzvsdy4didaiq5vam8ma3fbwbw2w60via4k6r1z9")))) + (build-system ruby-build-system) + (native-inputs + `(("bundler" ,bundler) + ("ruby-rspec" ,ruby-rspec))) + (arguments + '(#:tests? #f)) ; needs simplecov, among others + (synopsis "Gherkin parser") + (description "Gherkin 3 is a parser and compiler for the Gherkin +language. It is intended to replace Gherkin 2 and be used by all +Cucumber implementations to parse .feature files.") + (home-page + "https://github.com/cucumber/gherkin3") + (license expat))) -- 2.4.3