junoser 0.3.7 → 0.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,9 @@ module Junoser
16
16
 
17
17
  def rule
18
18
  str = @rule.read
19
- str = str.split(/\n/).map {|l| format(process_line(l))}.join("\n")
19
+ str = str.split(/\n/).map {|l|
20
+ format(process_line(l)) unless l =~ /^ *#/ # Skip additional comment lines
21
+ }.compact.join("\n")
20
22
  finalize(str)
21
23
  end
22
24