diff options
author | Seamus Abshere <seamus@abshere.net> | 2012-02-01 18:58:00 -0600 |
---|---|---|
committer | Seamus Abshere <seamus@abshere.net> | 2012-02-01 18:58:00 -0600 |
commit | bbef7b012f8ef3ce9c92c553379a63814201e12f (patch) | |
tree | b71da8f0ebcb5eeba189d78c7e6adcf545fe9185 /actionpack/test/abstract/layouts_test.rb | |
parent | 66fc1d6ac8f0f7b797ae18fdcb15cd618e4251f1 (diff) | |
download | rails-bbef7b012f8ef3ce9c92c553379a63814201e12f.tar.gz rails-bbef7b012f8ef3ce9c92c553379a63814201e12f.tar.bz2 rails-bbef7b012f8ef3ce9c92c553379a63814201e12f.zip |
Possibly clearer way of getting rid of ` and "
Incidentally it's also faster...
>> a = 'hello "id` world'; Benchmark.realtime { 500_000.times { a.tr('`"', "") } }
=> 0.7388770580291748
>> a = 'hello "id` world'; Benchmark.realtime { 500_000.times { a.gsub(/[`"]/, "") } }
=> 1.7843739986419678
Diffstat (limited to 'actionpack/test/abstract/layouts_test.rb')
0 files changed, 0 insertions, 0 deletions