me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-actioncable.

* gnu/packages/rails.scm (ruby-actioncable): New variable.
master
Christopher Baines 2019-01-28 16:16:27 +00:00
parent a058cbfd57
commit 937c8862f4
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 26 additions and 0 deletions

View File

@ -254,3 +254,29 @@ Ruby.")
applications. These work with any Rack-compatible server.")
(home-page "https://rubyonrails.org/")
(license license:expat)))
(define-public ruby-actioncable
(package
(name "ruby-actioncable")
(version "5.2.2")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "actioncable" version))
(sha256
(base32
"0826k5ch0l03f9yrkxy69aiv039z4qi00lnahw2rzywd2iz6r68x"))))
(build-system ruby-build-system)
(arguments
'(;; No included tests
#:tests? #f))
(propagated-inputs
`(("ruby-actionpack" ,ruby-actionpack)
("ruby-nio4r" ,ruby-nio4r)
("ruby-websocket-driver" ,ruby-websocket-driver)))
(synopsis "Integrate integrates WebSockets with Rails applications")
(description
"Action Cable integrates WebSockets with Rails applications. Through
WebSockets it allows for real-time features in web applications.")
(home-page "https://rubyonrails.org/")
(license license:expat)))