[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/229: gnu: Add ruby-insist.
From: |
guix-commits |
Subject: |
04/229: gnu: Add ruby-insist. |
Date: |
Tue, 28 Mar 2023 22:28:43 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 451e6de1131eae7a072af9e32ecff533c1a2bd89
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Mar 1 16:42:45 2023 -0500
gnu: Add ruby-insist.
* gnu/packages/ruby.scm (ruby-insist): 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 84ecdf14db..4ed760cfd6 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4102,6 +4102,29 @@ encoded form.")
(home-page "https://github.com/deepfryed/idn-ruby")
(license license:asl2.0)))
+(define-public ruby-insist
+ (package
+ (name "ruby-insist")
+ (version "1.0.0")
+ (source (origin
+ (method url-fetch)
+ (uri (rubygems-uri "insist" version))
+ (sha256
+ (base32
+ "0bw3bdwns14mapbgb8cbjmr0amvwz8y72gyclq04xp43wpp5jrvg"))))
+ (build-system ruby-build-system)
+ (arguments (list #:phases #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "ruby" "test/testing.rb")))))))
+ (synopsis "Testing tool for Ruby")
+ (description "This package provides a simple block-driven assertion
+library for both testing and for production code that attempts to make test
+definitions more readable.")
+ (home-page "https://github.com/jordansissel/ruby-insist/")
+ (license license:asl2.0)))
+
(define-public ruby-instantiator
(package
(name "ruby-instantiator")
- branch master updated (c4cca9cb5d -> d00f107507), guix-commits, 2023/03/28
- 05/229: gnu: ruby-standard: Update to 1.25.3, guix-commits, 2023/03/28
- 06/229: gnu: ruby-oedipus-lex: Update to 2.6.0., guix-commits, 2023/03/28
- 02/229: gnu: Add ruby-clamp., guix-commits, 2023/03/28
- 01/229: gnu: Add ruby-cabin., guix-commits, 2023/03/28
- 03/229: gnu: Add ruby-stud., guix-commits, 2023/03/28
- 04/229: gnu: Add ruby-insist.,
guix-commits <=
- 07/229: gnu: ruby-oedipus-lex: Fix indentation., guix-commits, 2023/03/28
- 11/229: gnu: ruby-unicode-display-width: Update to 2.4.2., guix-commits, 2023/03/28
- 12/229: gnu: Add ruby-rubocop-capybara-minimal., guix-commits, 2023/03/28
- 08/229: gnu: ruby-parser: Update to 3.2.1.1., guix-commits, 2023/03/28
- 09/229: gnu: ruby-rubocop-ast: Update to 1.28.0., guix-commits, 2023/03/28
- 10/229: gnu: Add ruby-rubocop-rake-minimal., guix-commits, 2023/03/28
- 18/229: gnu: ruby-rspec-expectations: Update to 3.12.2., guix-commits, 2023/03/28
- 19/229: gnu: ruby-rspec-given: Update to 3.8.2., guix-commits, 2023/03/28
- 20/229: gnu: ruby-rubocop-performance: Update to 1.16.0., guix-commits, 2023/03/28
- 15/229: gnu: ruby-rspec-support: Update to 3.12.0., guix-commits, 2023/03/28