mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add ruby-tomparse.
* gnu/packages/ruby.scm (ruby-tomparse): New variable.
This commit is contained in:
parent
908df675a8
commit
24ffd91bc2
1 changed files with 23 additions and 0 deletions
|
@ -7230,6 +7230,29 @@ (define-public ruby-spectroscope
|
|||
(home-page "http://rubyworks.github.com/spectroscope/")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ruby-tomparse
|
||||
(package
|
||||
(name "ruby-tomparse")
|
||||
(version "0.4.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "tomparse" version))
|
||||
(sha256
|
||||
(base32
|
||||
"06xakk41f1kgj6j1ahkwn4r6cvidixvm4phhlrvmwb7c3pr8ygc8"))))
|
||||
(build-system ruby-build-system)
|
||||
;; TODO: Tests require citron and rulebow, not yet packaged.
|
||||
(arguments '(#:tests? #f))
|
||||
(synopsis "TomDoc parser for Ruby")
|
||||
(description "TomParse is a TomDoc parser for Ruby. It takes a code
|
||||
comment as input and parses it into a convenient object-oriented structure in
|
||||
accordance with the TomDoc standard. See
|
||||
@url{https://github.com/mojombo/tomdoc, TomDoc} for more information about the
|
||||
TomDoc format.")
|
||||
(home-page "http://rubyworks.github.com/tomparse/")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ruby-clap
|
||||
(package
|
||||
(name "ruby-clap")
|
||||
|
|
Loading…
Reference in a new issue