module SoarSc::Rack::Router::HttpMethod
Constants
- ALL_METHODS
- ANY
- CONNECT
- DELETE
- GET
- HEAD
- OPTIONS
- POST
- PUT
- TRACE
Public Class Methods
valid?(method)
click to toggle source
# File lib/soar_sc/rack/router/http_method.rb, line 18 def self.valid?(method) ALL_METHODS.include?(method) end