summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2023-08-06 17:53:43 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2024-02-24 16:44:02 +0100
commit01035b214079b76867716cd22796ccebc0f3b9d3 (patch)
tree7fa1214129f9028b8cdaae77611eb868b04a6550 /gnu/packages
parent4e238aa2b0e426b951edc5e0276a37169f4473d7 (diff)
gnu: Add ruby-fog-json.
* gnu/packages/ruby.scm (ruby-fog-json): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/ruby.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 88fc3bd23a1..ab21bb04033 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -9726,6 +9726,29 @@ provides shared classes and tests for @code{fog} providers and services.")
9726 (home-page "https://github.com/fog/fog-core") 9726 (home-page "https://github.com/fog/fog-core")
9727 (license license:expat))) 9727 (license license:expat)))
9728 9728
9729(define-public ruby-fog-json
9730 (package
9731 (name "ruby-fog-json")
9732 (version "1.2.0")
9733 (source (origin
9734 (method git-fetch) ; for tests
9735 (uri (git-reference
9736 (url "https://github.com/fog/fog-json")
9737 (commit (string-append "v" version))))
9738 (file-name (git-file-name name version))
9739 (sha256
9740 (base32
9741 "0f4hbmhy22b1gbkzd3pnj5xvljp6bl7inc2y4fxh29nrmcn4pgb0"))))
9742 (build-system ruby-build-system)
9743 (native-inputs (list ruby-minitest))
9744 (propagated-inputs (list ruby-fog-core ruby-multi-json))
9745 (synopsis "JSON parsing tools used by @code{fog} providers")
9746 (description "This package containse the JSON parsing tools shared between
9747a number of providers in the @code{fog} gem. @code{fog} is a Ruby cloud
9748services library.")
9749 (home-page "https://github.com/fog/fog-json")
9750 (license license:expat)))
9751
9729(define-public ruby-pry-byebug 9752(define-public ruby-pry-byebug
9730 (package 9753 (package
9731 (name "ruby-pry-byebug") 9754 (name "ruby-pry-byebug")