# File lib/rudy/utils.rb, line 276 276: def without_indent(str) 277: indent = str.split($/).each {|line| !line.strip.empty? }.map {|line| line.index(/[^\s]/) }.compact.min 278: str.gsub(/^[[:blank:]]{#{indent}}/, '') 279: end