diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-29 15:16:40 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-29 15:16:40 -0700 |
commit | eabe504cdfa11b580c614d6bd501eb7cc60f485d (patch) | |
tree | ea0895463e4c6b99e09640bfc5a6c69397744134 /actionpack/lib/action_dispatch/journey/path | |
parent | 7da98d0a590d74027e6595da8a85ea3b4195c51c (diff) | |
download | rails-eabe504cdfa11b580c614d6bd501eb7cc60f485d.tar.gz rails-eabe504cdfa11b580c614d6bd501eb7cc60f485d.tar.bz2 rails-eabe504cdfa11b580c614d6bd501eb7cc60f485d.zip |
ask the strexp for the ast
Diffstat (limited to 'actionpack/lib/action_dispatch/journey/path')
-rw-r--r-- | actionpack/lib/action_dispatch/journey/path/pattern.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/journey/path/pattern.rb b/actionpack/lib/action_dispatch/journey/path/pattern.rb index cb0a02c298..da9d54cf6a 100644 --- a/actionpack/lib/action_dispatch/journey/path/pattern.rb +++ b/actionpack/lib/action_dispatch/journey/path/pattern.rb @@ -5,17 +5,16 @@ module ActionDispatch attr_reader :spec, :requirements, :anchored def initialize(strexp) - parser = Journey::Parser.new - @anchored = true case strexp when String + parser = Journey::Parser.new @spec = parser.parse(strexp) @requirements = {} @separators = "/.?" when Router::Strexp - @spec = parser.parse(strexp.path) + @spec = strexp.ast @requirements = strexp.requirements @separators = strexp.separators.join @anchored = strexp.anchor |