mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: ruby-railties: Update to 7.0.4.3.
* gnu/packages/rails.scm (ruby-railties): Update to 7.0.4.3. [version]: Use %ruby-rails-version. [source]: Use ruby-rails-monorepo. [arguments]: Add #:phases. [propagated-inputs]: Add ruby-zeitwerk.
This commit is contained in:
parent
365de8cfd2
commit
599ceb9510
1 changed files with 21 additions and 22 deletions
|
@ -609,28 +609,27 @@ (define-public ruby-actionmailer
|
|||
|
||||
(define-public ruby-railties
|
||||
(package
|
||||
(name "ruby-railties")
|
||||
(version "6.1.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "railties" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1685y5dcfgcq0b38j13vrpkhiiblmrl64wa9w065669bkgmkw4ra"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(;; No included tests
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
(list ruby-actionpack ruby-activesupport ruby-method-source ruby-rake
|
||||
ruby-thor))
|
||||
(synopsis "Rails internals, including application bootup and generators")
|
||||
(description
|
||||
"@code{railties} provides the core Rails internals including handling
|
||||
application bootup, plugins, generators, and Rake tasks.")
|
||||
(home-page "https://rubyonrails.org/")
|
||||
(license license:expat)))
|
||||
(name "ruby-railties")
|
||||
(version %ruby-rails-version)
|
||||
(source ruby-rails-monorepo)
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f ;requires rails to be installed
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(add-after 'delete-gemfiles 'chdir
|
||||
(lambda _
|
||||
(chdir "railties"))))))
|
||||
(propagated-inputs (list ruby-actionpack
|
||||
ruby-activesupport
|
||||
ruby-method-source
|
||||
ruby-rake
|
||||
ruby-thor
|
||||
ruby-zeitwerk))
|
||||
(synopsis "Rails internals, including application bootup and generators")
|
||||
(description "@code{railties} provides the core Rails internals including
|
||||
handling application bootup, plugins, generators, and Rake tasks.")
|
||||
(home-page "https://rubyonrails.org")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-sprockets-rails
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue