mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: ruby-globalid: Move to (gnu packages rails).
* gnu/packages/ruby.scm (ruby-globalid): Move to... * gnu/packages/rails.scm (ruby-globalid): ... here, with minor cosmetic adjustments.
This commit is contained in:
parent
064b6b4e1a
commit
167e69ccdc
2 changed files with 23 additions and 24 deletions
|
@ -113,6 +113,29 @@ (define-public ruby-activesupport
|
|||
(home-page "https://rubyonrails.org/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-globalid
|
||||
(package
|
||||
(name "ruby-globalid")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "globalid" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0kqm5ndzaybpnpxqiqkc41k4ksyxl41ln8qqr6kb130cdxsf2dxk"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ;no included tests
|
||||
(propagated-inputs
|
||||
(list ruby-activesupport))
|
||||
(synopsis "Generate URIs idenfitying model instances in Ruby")
|
||||
(description
|
||||
"@code{GlobalID} provides a way to generate URIs from a model in Ruby that
|
||||
uniquely identify it.")
|
||||
(home-page "https://rubyonrails.org/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-spring
|
||||
(package
|
||||
(name "ruby-spring")
|
||||
|
|
|
@ -13214,30 +13214,6 @@ (define-public ruby-nio4r
|
|||
(home-page "https://github.com/socketry/nio4r")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-globalid
|
||||
(package
|
||||
(name "ruby-globalid")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "globalid" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0kqm5ndzaybpnpxqiqkc41k4ksyxl41ln8qqr6kb130cdxsf2dxk"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(;; No included tests
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
(list ruby-activesupport))
|
||||
(synopsis "Generate URIs idenfitying model instances in Ruby")
|
||||
(description
|
||||
"@code{GlobalID} provides a way to generate URIs from a model in Ruby that
|
||||
uniquely identify it.")
|
||||
(home-page "https://rubyonrails.org/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-language-server-protocol
|
||||
(package
|
||||
(name "ruby-language-server-protocol")
|
||||
|
|
Loading…
Reference in a new issue