1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #34693 from ahorek/match

[perf] use #match?
This commit is contained in:
Ryuta Kamizono 2018-12-13 13:19:27 +09:00
commit 144b57d925
2 changed files with 4 additions and 4 deletions

View file

@ -378,7 +378,7 @@ module ActionView
# This regex match does double duty of finding only files which match
# details (instead of just matching the prefix) and also filtering for
# case-insensitive file systems.
!filename.match(regex) ||
!regex.match?(filename) ||
File.directory?(filename)
end.sort_by do |filename|
# Because we scanned the directory, instead of checking for files

View file

@ -98,15 +98,15 @@ module ActiveModel
end
def is_integer?(raw_value)
INTEGER_REGEX === raw_value.to_s
INTEGER_REGEX.match?(raw_value.to_s)
end
def is_decimal?(raw_value)
DECIMAL_REGEX === raw_value.to_s
DECIMAL_REGEX.match?(raw_value.to_s)
end
def is_hexadecimal_literal?(raw_value)
/\A0[xX]/ === raw_value
/\A0[xX]/.match?(raw_value)
end
def filtered_options(value)