gnu: Add ruby-solargraph.

* gnu/packages/ruby.scm (ruby-solargraph): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Brian Leung 2019-08-13 23:45:29 +02:00 committed by Ludovic Courtès
parent 7bddb6aa53
commit a9e2de7e3a
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 53 additions and 0 deletions

View File

@ -8871,3 +8871,56 @@ application.")
(home-page "https://github.com/xijo/reverse_markdown")
(license license:wtfpl2)))
(define-public ruby-solargraph
(package
(name "ruby-solargraph")
(version "0.36.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "solargraph" version))
(sha256
(base32
"0b93xzkgd1h06da9gdnwivj1mzbil8lc072y2838dy6i7bxgpy9i"))))
(build-system ruby-build-system)
(propagated-inputs
`(("ruby-backport" ,ruby-backport)
("bundler" ,bundler)
("ruby-htmlentities" ,ruby-htmlentities)
("ruby-jaro-winkler" ,ruby-jaro-winkler)
("ruby-maruku" ,ruby-maruku)
("ruby-nokogiri" ,ruby-nokogiri)
("ruby-parser" ,ruby-parser)
("ruby-reverse-markdown" ,ruby-reverse-markdown)
("ruby-rubocop" ,ruby-rubocop)
("ruby-thor" ,ruby-thor)
("ruby-tilt" ,ruby-tilt)
("ruby-yard" ,ruby-yard)))
(native-inputs
`(("ruby-rspec" ,ruby-rspec)
("ruby-pry" ,ruby-pry)
("ruby-simplecov" ,ruby-simplecov)
("ruby-webmock" ,ruby-webmock-2)))
;; FIXME: can't figure out how to run the tests properly:
;; An error occurred while loading spec_helper.
;; Failure/Error: return gem_original_require(path)
;; LoadError:
;; cannot load such file -- spec_helper
(arguments
'(#:tests? #f
#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "rspec"))
#t)))))
(synopsis
"IDE tools for code completion, inline documentation, and static analysis")
(description
"Solargraph provides a comprehensive suite of tools for Ruby
programming: intellisense, diagnostics, inline documentation, and type
checking.")
(home-page "https://solargraph.org/")
(license license:expat)))