diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-08 15:40:52 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-28 22:22:20 -0400 |
commit | 5acb5fcccd24361f9d953a0c291cb1d1982b3540 (patch) | |
tree | 27ba9a18a6e5cbb26287954a8dee5c5a2142b397 | |
parent | 46ae64560bf917eea4434a12e3ae961ee824d28e (diff) | |
download | guix-5acb5fcccd24361f9d953a0c291cb1d1982b3540.tar.gz |
gnu: Add ruby-websocket.
* gnu/packages/ruby.scm (ruby-websocket): New variable.
-rw-r--r-- | gnu/packages/ruby.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 3a757582dd..64d6e9de16 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -13556,6 +13556,31 @@ interface for the Sentry error logger.") 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") |