diff options
author | Viktar Basharymau <viktar.basharymau@thehamon.com> | 2014-06-19 18:17:42 +0300 |
---|---|---|
committer | Viktar Basharymau <viktar.basharymau@thehamon.com> | 2014-06-19 18:39:58 +0300 |
commit | 453cd7b6176dd9cb2acc2a597b096ddadf6790a5 (patch) | |
tree | 6afcab87f7bb2b34eefbcf7ce1cfe7600e486a34 /Gemfile | |
parent | 96f28b6a9899889c5b9d1786ca155e0c97abae7a (diff) | |
download | rails-453cd7b6176dd9cb2acc2a597b096ddadf6790a5.tar.gz rails-453cd7b6176dd9cb2acc2a597b096ddadf6790a5.tar.bz2 rails-453cd7b6176dd9cb2acc2a597b096ddadf6790a5.zip |
Relpace `=~ Regexp.new str` with `.include? str` in AC::Base#_valid_action_name?
Because it is more natural way to test substring inclusion. Also, in
this particular case it is much faster.
In general, using `Regexp.new str` for such kind of things is dangerous.
The string must be escaped, unless you know what you're doing. Example:
Regexp.new "\\" # HELLO WINDOWS
# RegexpError: too short escape sequence: /\/
The right way to do this is escape the string
Regexp.new Regexp.escape "\\"
# => /\\/
Here is the benchmark showing how faster `include?` call is.
```
require 'benchmark/ips'
Benchmark.ips do |x|
x.report('include?') { !"index".to_s.include? File::SEPARATOR }
x.report(' !~ ') { "index" !~ Regexp.new(File::SEPARATOR) }
end
__END__
Calculating -------------------------------------
include? 75754 i/100ms
!~ 21089 i/100ms
-------------------------------------------------
include? 3172882.3 (±4.5%) i/s - 15832586 in 5.000659s
!~ 322918.8 (±8.6%) i/s - 1602764 in 4.999509s
```
Extra `.to_s` call is needed to handle the case when `action_name` is
`nil`. If it is omitted, some tests fail.
Diffstat (limited to 'Gemfile')
0 files changed, 0 insertions, 0 deletions