Method: Inspec::Resources::ApacheConf#filter_comments

Defined in:
lib/resources/apache_conf.rb

#filter_comments(data) ⇒ Object



54
55
56
57
58
59
60
61
62
# File 'lib/resources/apache_conf.rb', line 54

def filter_comments(data)
  content = ''
  data.each_line do |line|
    if !line.match(/^\s*#/)
      content << line
    end
  end
  content
end