diff --git a/rdoc/created.rid b/rdoc/created.rid index 65a09756..4253e445 100644 --- a/rdoc/created.rid +++ b/rdoc/created.rid @@ -1,4 +1,4 @@ -Fri, 11 Oct 2024 07:08:30 -0700 +Fri, 11 Oct 2024 07:14:14 -0700 README.rdoc Wed, 18 Oct 2023 15:53:01 -0700 CHANGELOG Fri, 11 Oct 2024 07:02:10 -0700 doc/CHANGELOG.old Fri, 11 Mar 2022 10:33:07 -0800 @@ -267,5 +267,5 @@ doc/release_notes/3.81.0.txt Wed, 12 Jun 2024 08:35:42 -0700 doc/release_notes/3.82.0.txt Fri, 12 Jul 2024 07:56:42 -0700 doc/release_notes/3.83.0.txt Mon, 12 Aug 2024 08:39:07 -0700 doc/release_notes/3.84.0.txt Thu, 12 Sep 2024 09:02:03 -0700 -doc/release_notes/3.85.0.txt Fri, 11 Oct 2024 07:02:10 -0700 +doc/release_notes/3.85.0.txt Fri, 11 Oct 2024 07:13:49 -0700 doc/release_notes/3.9.0.txt Mon, 11 Jun 2018 12:33:07 -0700 diff --git a/rdoc/files/doc/release_notes/3_85_0_txt.html b/rdoc/files/doc/release_notes/3_85_0_txt.html index 2b4dcdd3..858d77a5 100644 --- a/rdoc/files/doc/release_notes/3_85_0_txt.html +++ b/rdoc/files/doc/release_notes/3_85_0_txt.html @@ -31,7 +31,7 @@

3.85.0.txt
Last Update: -2024-10-11 07:02:10 -0700 +2024-10-11 07:13:49 -0700
@@ -65,9 +65,10 @@

New Features&par

Symbol matchers can build upon class matchers (and vice-versa):

-
symbol_matcher :ActiveEmployee, Employee |employee|
-  employee if employee.active?
-end
+
symbol_matcher :ActiveEmployee, Employee do |employee|
+  employee if employee.active?
+end
+

With the above :ActiveEmployee matcher, segments will only match if they are an integer that is related to an employee, and that employee is active.