diff options
author | Christopher Baines <mail@cbaines.net> | 2023-06-29 12:00:34 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-07-10 08:26:03 +0100 |
commit | 52cbeffa59913e072560a422798fe793644c2994 (patch) | |
tree | 950361515f75eb835c6edec59c58681d4d21bd82 | |
parent | 68322974bf9372ef932522a763d7a6bfc89c6da5 (diff) | |
download | guix-52cbeffa59913e072560a422798fe793644c2994.tar.gz |
gnu: swagger-diff: Update to 2.0.0.
* gnu/packages/ruby.scm (swagger-diff): Update to 2.0.0. [arguments]: Update style.
-rw-r--r-- | gnu/packages/ruby.scm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index ec2084f08a..acc26d4f81 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -14929,27 +14929,27 @@ is also included.") (define-public swagger-diff (package (name "swagger-diff") - (version "1.1.2") + (version "2.0.0") (source (origin (method url-fetch) (uri (rubygems-uri "swagger-diff" version)) (sha256 (base32 - "1hxx50nga1bqn254iqjcdwkc9c72364ks9lyjyw10ajz0l0ly7sn")))) + "18kbrijkafs3vfsbaqz0cqfj7jrz3aj8xr4fgn5if63wlximybv2")))) (build-system ruby-build-system) (arguments - `(#:test-target "spec" - #:phases - (modify-phases %standard-phases - ;; Don't run or require rubocop, the code linting tool, as this is a - ;; bit unnecessary. - (add-after 'unpack 'dont-run-rubocop - (lambda _ - (substitute* "Rakefile" - ((".*rubocop.*") "") - ((".*RuboCop.*") "")) - #t))))) + (list + #:test-target "spec" + #:phases + #~(modify-phases %standard-phases + ;; Don't run or require rubocop, the code linting tool, as this is a + ;; bit unnecessary. + (add-after 'unpack 'dont-run-rubocop + (lambda _ + (substitute* "Rakefile" + ((".*rubocop.*") "") + ((".*RuboCop.*") ""))))))) (propagated-inputs (list ruby-json-schema)) (native-inputs |