mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ruby-method-source.
* gnu/packages/ruby.scm (ruby-method-source): New variable.
This commit is contained in:
parent
386b0052f5
commit
30b0b725ff
1 changed files with 22 additions and 0 deletions
|
@ -844,3 +844,25 @@ (define-public ruby-nokogiri
|
||||||
both CSS3 selector and XPath 1.0 support.")
|
both CSS3 selector and XPath 1.0 support.")
|
||||||
(home-page "http://www.nokogiri.org/")
|
(home-page "http://www.nokogiri.org/")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-method-source
|
||||||
|
(package
|
||||||
|
(name "ruby-method-source")
|
||||||
|
(version "0.8.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "method_source" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("ruby-bacon" ,ruby-bacon)
|
||||||
|
("git" ,git)))
|
||||||
|
(synopsis "Retrieve the source code for Ruby methods")
|
||||||
|
(description "Method_source retrieves the source code for Ruby methods.
|
||||||
|
Additionally, it can extract source code from Proc and Lambda objects or just
|
||||||
|
extract comments.")
|
||||||
|
(home-page "https://github.com/banister/method_source")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue