diff options
author | Akira Matsuda <ronnie@dio.jp> | 2019-07-29 14:05:18 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2019-07-29 14:17:36 +0900 |
commit | 8f90ac7827787a84b38055e1011ef9aedd89fe91 (patch) | |
tree | da113b79ba98d60e5c4ee0705d03044254c22c84 /actionview/lib/action_view/helpers | |
parent | 381e8cb67abec7d2ceb812fde587d924667de122 (diff) | |
download | rails-8f90ac7827787a84b38055e1011ef9aedd89fe91.tar.gz rails-8f90ac7827787a84b38055e1011ef9aedd89fe91.tar.bz2 rails-8f90ac7827787a84b38055e1011ef9aedd89fe91.zip |
Add AS::TimeZone#match?
Diffstat (limited to 'actionview/lib/action_view/helpers')
-rw-r--r-- | actionview/lib/action_view/helpers/form_options_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/form_options_helper.rb b/actionview/lib/action_view/helpers/form_options_helper.rb index ad19426fff..cf8f7de931 100644 --- a/actionview/lib/action_view/helpers/form_options_helper.rb +++ b/actionview/lib/action_view/helpers/form_options_helper.rb @@ -569,7 +569,7 @@ module ActionView # be obtained in Active Record as a value object). The +model+ parameter # must respond to +all+ and return an array of objects that represent time # zones; each object must respond to +name+. If a Regexp is given it will - # attempt to match the zones using the <code>=~<code> operator. + # attempt to match the zones using <code>match?</code> method. # # NOTE: Only the option tags are returned, you have to wrap this call in # a regular HTML select tag. @@ -581,7 +581,7 @@ module ActionView if priority_zones if priority_zones.is_a?(Regexp) - priority_zones = zones.select { |z| z =~ priority_zones } + priority_zones = zones.select { |z| z.match?(priority_zones) } end zone_options.safe_concat options_for_select(convert_zones[priority_zones], selected) |