module Bundler::YAMLSerializer
def strip_comment(val)
def strip_comment(val) if val.include?("#") && !val.start_with?("#") val.split("#", 2).first.strip else val end end
def strip_comment(val) if val.include?("#") && !val.start_with?("#") val.split("#", 2).first.strip else val end end