diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-13 13:40:55 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-13 13:41:03 -0700 |
commit | 33dc653466c0058740611259956712a9027801b3 (patch) | |
tree | 120ef7ec5fe902bd643759832940b433cfebfca7 /actionpack/lib/action_dispatch | |
parent | b4b4a611d0eb9aa1c640c5f521c6a43bf2a65bab (diff) | |
download | rails-33dc653466c0058740611259956712a9027801b3.tar.gz rails-33dc653466c0058740611259956712a9027801b3.tar.bz2 rails-33dc653466c0058740611259956712a9027801b3.zip |
raise if `anchor` is passed to `scope`
The `anchor` parameter [is overridden](https://github.com/rails/rails/blob/b4b4a611d0eb9aa1c640c5f521c6a43bf2a65bab/actionpack/lib/action_dispatch/routing/mapper.rb#L1528) unless it
is directly passed to `match`, so setting it in a scope must be a
mistake.
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 887b5957df..b80720218f 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -788,6 +788,10 @@ module ActionDispatch except: options.delete(:except) } end + if options.key? :anchor + raise ArgumentError, 'anchor is ignored unless passed to `match`' + end + @scope.options.each do |option| if option == :blocks value = block |