diff options
| author | Steve George <steve@futurile.net> | 2026-04-09 19:29:40 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-08-28 16:40:44 +0200 |
| commit | 31e89e105e2ac441ae827eb47bb4a956e7bc3b00 (patch) | |
| tree | fcbd2004f1eae5571f0dbb7b0862c21b580ea24b | |
| parent | 3d5139e3d4850c03414ffcf9df6601affd373bfe (diff) | |
gnu: ruby-method-source: Update to 1.1.0.
* gnu/packages/ruby-xyz.scm (ruby-method-source): Update to 1.1.0.
[arguments]<#:ruby>: Use ruby-3.3.
Signed-off-by: Steve George <steve@futurile.net>
| -rw-r--r-- | gnu/packages/ruby-xyz.scm | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm index 35a912d8f82..5afec1abb56 100644 --- a/gnu/packages/ruby-xyz.scm +++ b/gnu/packages/ruby-xyz.scm | |||
| @@ -6738,27 +6738,29 @@ both CSS3 selector and XPath 1.0 support.") | |||
| 6738 | (define-public ruby-method-source | 6738 | (define-public ruby-method-source |
| 6739 | (package | 6739 | (package |
| 6740 | (name "ruby-method-source") | 6740 | (name "ruby-method-source") |
| 6741 | (version "1.0.0") | 6741 | (version "1.1.0") |
| 6742 | (source | 6742 | (source |
| 6743 | (origin | 6743 | (origin |
| 6744 | (method url-fetch) | 6744 | (method url-fetch) |
| 6745 | (uri (rubygems-uri "method_source" version)) | 6745 | (uri (rubygems-uri "method_source" version)) |
| 6746 | (sha256 | 6746 | (sha256 |
| 6747 | (base32 | 6747 | (base32 "1igmc3sq9ay90f8xjvfnswd1dybj1s3fi0dwd53inwsvqk4h24qq")))) |
| 6748 | "1pnyh44qycnf9mzi1j6fywd5fkskv3x7nmsqrrws0rjn5dd4ayfp")))) | ||
| 6749 | (build-system ruby-build-system) | 6748 | (build-system ruby-build-system) |
| 6750 | (arguments | 6749 | (arguments |
| 6751 | `(#:test-target "spec" | 6750 | (list |
| 6752 | #:phases | 6751 | #:ruby ruby-3.3 |
| 6753 | (modify-phases %standard-phases | 6752 | #:test-target "spec" |
| 6754 | (add-after 'unpack 'remove-git-ls-files | 6753 | #:phases |
| 6755 | (lambda* (#:key outputs #:allow-other-keys) | 6754 | #~(modify-phases %standard-phases |
| 6756 | (substitute* "Rakefile" | 6755 | (add-after 'unpack 'remove-git-ls-files |
| 6757 | (("git ls-files") "find . -type f"))))))) | 6756 | (lambda* (#:key outputs #:allow-other-keys) |
| 6758 | (native-inputs | 6757 | (substitute* "Rakefile" |
| 6759 | (list ruby-rspec)) | 6758 | (("git ls-files") |
| 6759 | "find . -type f"))))))) | ||
| 6760 | (native-inputs (list ruby-rspec)) | ||
| 6760 | (synopsis "Retrieve the source code for Ruby methods") | 6761 | (synopsis "Retrieve the source code for Ruby methods") |
| 6761 | (description "Method_source retrieves the source code for Ruby methods. | 6762 | (description |
| 6763 | "Method_source retrieves the source code for Ruby methods. | ||
| 6762 | Additionally, it can extract source code from Proc and Lambda objects or just | 6764 | Additionally, it can extract source code from Proc and Lambda objects or just |
| 6763 | extract comments.") | 6765 | extract comments.") |
| 6764 | (home-page "https://github.com/banister/method_source") | 6766 | (home-page "https://github.com/banister/method_source") |
