module Gibbon

Public Instance Methods

add_path_part(part) click to toggle source

hack to add to the path keeping '_' intact

# File lib/gibbon/request_decorator.rb, line 4
def add_path_part(part)
  @path_parts << part.to_s.downcase
  @path_parts.flatten!
  self
end