summaryrefslogtreecommitdiff
path: root/gnu/packages/ruby.scm
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2023-07-23 18:38:05 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2024-02-24 16:42:41 +0100
commit077bcc2e1758c22eb5eb354b2f3eb9b7ed046322 (patch)
tree443af10a02087d8269d3f1d9f14bdd2fb3eb8f64 /gnu/packages/ruby.scm
parent4980cd1697276bfdfe26d90132d9e6e865f7b8e3 (diff)
gnu: Add ruby-stringio.
* gnu/packages/ruby.scm (ruby-stringio): New variable.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r--gnu/packages/ruby.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index cb26fc0ac51..1a5ab8de113 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -14936,6 +14936,26 @@ can be used to build formatters, linters, language servers, and more.")
14936 (home-page "https://github.com/ruby-syntax-tree/syntax_tree") 14936 (home-page "https://github.com/ruby-syntax-tree/syntax_tree")
14937 (license license:expat))) 14937 (license license:expat)))
14938 14938
14939(define-public ruby-stringio
14940 (package
14941 (name "ruby-stringio")
14942 (version "3.1.0")
14943 (source (origin
14944 (method git-fetch)
14945 (uri (git-reference
14946 (url "https://github.com/ruby/stringio")
14947 (commit (string-append "v" version))))
14948 (file-name (git-file-name name version))
14949 (sha256
14950 (base32
14951 "1jgi2w5y0z0x9mfapr2pdlag4wvn03fpf5kbai8bscyh8nn79yka"))))
14952 (build-system ruby-build-system)
14953 (native-inputs (list ruby-rake-compiler ruby-test-unit-ruby-core))
14954 (synopsis "Pseudo `IO` class from and to `String`")
14955 (description "Pseudo `IO` class from and to `String`.")
14956 (home-page "https://github.com/ruby/stringio")
14957 (license license:bsd-2)))
14958
14939(define sorbet-version "0.5.10610.20230106174520-1fa668010") 14959(define sorbet-version "0.5.10610.20230106174520-1fa668010")
14940 14960
14941(define sorbet-monorepo 14961(define sorbet-monorepo