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
match :items, using: put && patch
match 'items', to 'items#update', via: [:put, :patch]
put 'items', to: 'items#update'
put :items, include: patch