In Rails, which code would you use to define a route that handles both the PUT and PATCH REST HTTP verbs?
PUT
PATCH
REST HTTP
put 'items', to: 'items#update'
match 'items', to 'items#update', via: [:put, :patch]
match :items, using: put && patch
put :items, include: patch