mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add ruby-websocket.
* gnu/packages/ruby.scm (ruby-websocket): New variable.
This commit is contained in:
parent
46ae64560b
commit
5acb5fcccd
1 changed files with 25 additions and 0 deletions
|
@ -13556,6 +13556,31 @@ (define-public ruby-webrick
|
|||
HTTPS server, a proxy server, and a virtual-host server.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ruby-websocket
|
||||
(package
|
||||
(name "ruby-websocket")
|
||||
(version "1.2.9")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "websocket" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0dib6p55sl606qb4vpwrvj5wh881kk4aqn2zpfapf8ckx7g14jw8"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments (list #:test-target "spec"
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'disable-rubocop
|
||||
(lambda _
|
||||
(substitute* "Rakefile"
|
||||
(("require 'rubocop/rake_task'") "")
|
||||
(("RuboCop::RakeTask.new") "")))))))
|
||||
(native-inputs (list ruby-rspec))
|
||||
(synopsis "WebSocket protocol Ruby library")
|
||||
(description "This package provides a Ruby library to handle the WebSocket
|
||||
protocol.")
|
||||
(home-page "https://github.com/imanel/websocket-ruby")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-interception
|
||||
(package
|
||||
(name "ruby-interception")
|
||||
|
|
Loading…
Reference in a new issue