pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/ruby-railties70



Module Name:    pkgsrc
Committed By:   taca
Date:           Tue Jun  7 15:22:15 UTC 2022

Modified Files:
        pkgsrc/devel/ruby-railties70: Makefile distinfo

Log Message:
devel/ruby-railties70: update to 7.0.3

7.0.3 (2022-05-12)

* If reloading and eager loading are both enabled, after a reload Rails
  eager loads again the application code.

* Use controller_class_path in Rails::Generators::NamedBase#route_url

  The route_url method now returns the correct path when generating a
  namespaced controller with a top-level model using --model-name.

  Previously, when running this command:

        bin/rails generate scaffold_controller Admin/Post --model-name Post

  the comments above the controller action would look like:

        # GET /posts
        def index
          @posts = Post.all
        end

  afterwards, they now look like this:

        # GET /admin/posts
        def index
          @posts = Post.all
        end

  Fixes #44662.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/ruby-railties70/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/ruby-railties70/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/ruby-railties70/Makefile
diff -u pkgsrc/devel/ruby-railties70/Makefile:1.3 pkgsrc/devel/ruby-railties70/Makefile:1.4
--- pkgsrc/devel/ruby-railties70/Makefile:1.3   Sun Mar 27 06:43:11 2022
+++ pkgsrc/devel/ruby-railties70/Makefile       Tue Jun  7 15:22:14 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2022/03/27 06:43:11 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2022/06/07 15:22:14 taca Exp $
 
 DISTNAME=      railties-${RAILS_VERSION}
 PKGNAME=       ${RUBY_PKGPREFIX}-railties${RUBY_RAILS}-${RAILS_VERSION}
@@ -20,7 +20,8 @@ RUBY_RAILS_ACCEPTED=  70
 RUBY_RAILS_STRICT_DEP= yes
 RUBYGEM_OPTIONS+=      --format-executable
 OVERRIDE_GEMSPEC+=     :executables rails=rails${RUBY_RAILS} \
-                       :files exe/rails=exe/rails${RUBY_RAILS}
+                       :files exe/rails=exe/rails${RUBY_RAILS} \
+                       :files lib/rails/.DS_Store=
 
 RUBY_VERSIONS_INCOMPATIBLE=    26
 

Index: pkgsrc/devel/ruby-railties70/distinfo
diff -u pkgsrc/devel/ruby-railties70/distinfo:1.5 pkgsrc/devel/ruby-railties70/distinfo:1.6
--- pkgsrc/devel/ruby-railties70/distinfo:1.5   Thu May  5 03:41:41 2022
+++ pkgsrc/devel/ruby-railties70/distinfo       Tue Jun  7 15:22:14 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2022/05/05 03:41:41 taca Exp $
+$NetBSD: distinfo,v 1.6 2022/06/07 15:22:14 taca Exp $
 
-BLAKE2s (railties-7.0.2.4.gem) = 546667be6b0bde6c02c744f255e08e8e40d0a7468c16a4ecae07d364a52b3356
-SHA512 (railties-7.0.2.4.gem) = d5d3e3b5a0e46f6bfb3288035e9522f67544d7fe6e4854264388086628ce074b351f4a0110a63aacfebf11ce28c7b8521dec55f10c148e6316bf6e65ca3668c5
-Size (railties-7.0.2.4.gem) = 159232 bytes
+BLAKE2s (railties-7.0.3.gem) = 3a010031e7594d309a6bfeef2012eb9d9c06d2aba434ac66b9dd9a57ac02abb6
+SHA512 (railties-7.0.3.gem) = dcaad47d71785bcf418642b114de30e83b9f54d818387762cb856c07bb942b3e1c49c7056722ec81ffec3d44f96d35b2b75e4e27daf7a5b152361e9d9ff8eaee
+Size (railties-7.0.3.gem) = 160256 bytes



Home | Main Index | Thread Index | Old Index