Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (7h)  pkgsrc-2024Q1 (9d)  pkgsrc-2023Q4 (56d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (168d) 

2024-05-27 04:07:21 UTC Now

2022-09-10 12:43:05 UTC MAIN commitmail json YAML

devel/ruby-activemodel70: update to 7.0.4

* Handle name clashes in attribute methods code generation cache.

* When two distinct attribute methods would generate similar names, the
  first implementation would be incorrectly re-used.

class A
  attribute_method_suffix "_changed?"
  define_attribute_methods :x
end

class B
  attribute_method_suffix "?"
  define_attribute_methods :x_changed
end

  Jean Boussier

(taca)