class Protocol::HTTP::Methods

HTTP method verbs

def self.each

def self.each
	constants.each do |name|
		yield name, const_get(name)
	end
end