diff options
author | Christopher Baines <mail@cbaines.net> | 2019-02-17 17:24:05 +0000 |
---|---|---|
committer | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2019-02-24 20:34:02 +0000 |
commit | d56d8b02e9393ef6583f01f99a4f22dbda0eaa62 (patch) | |
tree | 9bae68c703b145903e05c873533bc8b6a0b1c6aa | |
parent | 5d02acaac8bcdf50cb47f609d9e42efe68a29f9d (diff) | |
download | gnu-guix-d56d8b02e9393ef6583f01f99a4f22dbda0eaa62.tar gnu-guix-d56d8b02e9393ef6583f01f99a4f22dbda0eaa62.tar.gz |
gnu: Add ruby-rerun.
* gnu/packages/ruby.scm (ruby-rerun): New variable.
-rw-r--r-- | gnu/packages/ruby.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cb5be482f5..2186fbc389 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2790,6 +2790,31 @@ conversion to (X)HTML.") (home-page "https://github.com/vmg/redcarpet") (license license:expat))) +(define-public ruby-rerun + (package + (name "ruby-rerun") + (version "0.13.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "rerun" version)) + (sha256 + (base32 + "1cskvxk8z8vmfail8na7hj91hs0qnvds9nydj04zi3dbddgnbmvz")))) + (build-system ruby-build-system) + (arguments + '(;; No included tests + #:tests? #f)) + (propagated-inputs + `(("ruby-listen" ,ruby-listen))) + (synopsis "Run a process, and restart when some monitored files change") + (description + "Rerun is a tool to launch programs, then monitor the filesystem, and +restart the program when any of the monitored files change. It's written in +Ruby, but can be used for all programs.") + (home-page "https://github.com/alexch/rerun/") + (license license:expat))) + (define-public ruby-mocha (package (name "ruby-mocha") |