mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 03:17:15 -05:00
gnu: Add ruby-mapping.
* gnu/packages/ruby.scm (ruby-mapping): New variable.
This commit is contained in:
parent
73d8e27822
commit
dcb46eebee
1 changed files with 24 additions and 0 deletions
|
@ -3940,6 +3940,30 @@ (define-public ruby-test-unit
|
||||||
(home-page "https://test-unit.github.io/")
|
(home-page "https://test-unit.github.io/")
|
||||||
(license (list license:psfl license:ruby))))
|
(license (list license:psfl license:ruby))))
|
||||||
|
|
||||||
|
(define-public ruby-mapping
|
||||||
|
(package
|
||||||
|
(name "ruby-mapping")
|
||||||
|
(version "1.1.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch) ;for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ioquatix/mapping")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0yhmqp8mprjqf9m7wzc4hhi50qbfax86r89w852csns0ijaffjjs"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments (list #:test-target "spec"))
|
||||||
|
(native-inputs (list ruby-rspec))
|
||||||
|
(synopsis "Map model objects based on their class to a given output model")
|
||||||
|
(description "The @code{mapping} gem maps model objects based on their
|
||||||
|
class to a given output model. It is useful for versioning external
|
||||||
|
interfaces (e.g. JSON APIs) or processing structured data from one format to
|
||||||
|
another.")
|
||||||
|
(home-page "https://github.com/ioquatix/mapping")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-markaby
|
(define-public ruby-markaby
|
||||||
(package
|
(package
|
||||||
(name "ruby-markaby")
|
(name "ruby-markaby")
|
||||||
|
|
Loading…
Reference in a new issue