diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:44:59 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-18 18:25:19 +0000 |
commit | 5a042851675a59a7aa0bced8ed1b3fed3595ad70 (patch) | |
tree | f366f152774121bf40bf7ecef76ea2f394afa0c7 /gnu/packages/ruby.scm | |
parent | a4148f640dbcf9ad7156d951b5ddf5019d55a6a3 (diff) | |
download | guix-5a042851675a59a7aa0bced8ed1b3fed3595ad70.tar guix-5a042851675a59a7aa0bced8ed1b3fed3595ad70.tar.gz |
gnu: Add ruby-rspec-pending-for.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r-- | gnu/packages/ruby.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f1321cd54e..a307a7c796 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -5862,3 +5862,31 @@ will probably be an issue and hence this gem.") "Hashie is a collection of classes and mixins that make hashes more powerful.") (home-page "https://github.com/intridea/hashie") (license license:expat))) + +(define-public ruby-rspec-pending-for + (package + (name "ruby-rspec-pending-for") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "rspec-pending_for" version)) + (sha256 + (base32 + "0f9sj7v3j14fvd631smxr04l53pk8dqwn9ybqkjdqmzvcv73b5n6")))) + (build-system ruby-build-system) + (arguments + `(#:test-target "spec")) + (native-inputs + `(("bundler" ,bundler))) + (propagated-inputs + `(("ruby-rspec-core" ,ruby-rspec-core) + ("ruby-ruby-engine" ,ruby-ruby-engine) + ("ruby_version" ,ruby_version))) + (synopsis + "Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby) / version combinations") + (description + "Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby) / version combinations") + (home-page + "https://github.com/pboling/rspec-pending_for") + (license #f))) |