Sha256: 8927d9bed181f27ff3e9c799296e498b2328fcb23dd709c2ab412bc930b1d67d

Contents?: true

Size: 421 Bytes

Versions: 3

Compression:

Stored size: 421 Bytes

Contents

module Restfulie
  module Client
    module HTTP #:nodoc:
      #=This class includes RequestBuilder module.
      class RequestBuilderExecutor < RequestExecutor
        include RequestBuilder

        def host=(host)
          super
          at(self.host.path)
        end

        def at(path)
          @path = path
          self
        end

        def path
          @path
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
restfulie-0.9.3 lib/restfulie/client/http/request_builder_executor.rb
restfulie-0.9.1 lib/restfulie/client/http/request_builder_executor.rb
restfulie-0.8.1 lib/restfulie/client/http/request_builder_executor.rb