module GMO::HTTPService

Public Class Methods

included(base) click to toggle source
   # File lib/gmo/http_services.rb
18 def self.included(base)
19   base.class_eval do
20     def self.server(options = {})
21       options[:host]
22     end
23   end# end class_eval
24 end
server(options = {}) click to toggle source
   # File lib/gmo/http_services.rb
20 def self.server(options = {})
21   options[:host]
22 end