me
/
guix
Archived
1
0
Fork 0

gnu: ruby-websocket: Update to 1.2.9-1.950e416.

* gnu/packages/ruby.scm (ruby-websocket): Update to 1.2.9-1.950e416.
[native-inputs]: Add ruby-webrick.
Christopher Baines 2023-06-21 10:38:06 +01:00
parent 830d6e342f
commit 5dae5ad0f5
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 29 additions and 22 deletions

View File

@ -15788,29 +15788,36 @@ 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
(let ((commit "950e416a19a76c7e6a673a7e5baa6283476dbec1")
(revision "1"))
(package
(name "ruby-websocket")
(version (git-version "1.2.9" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/imanel/websocket-ruby")
(commit commit)))
(sha256
(base32
"1i6r0glpxy47zdf76aqgcpjgcgydla0733hfdhp628pmrinnkgwv"))
(file-name (git-file-name name version))))
(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
ruby-webrick))
(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)))
(home-page "https://github.com/imanel/websocket-ruby")
(license license:expat))))
(define-public ruby-interception
(package