Skip to content

Instantly share code, notes, and snippets.

@flazz
Created March 7, 2011 15:00
Show Gist options
  • Save flazz/858596 to your computer and use it in GitHub Desktop.
Save flazz/858596 to your computer and use it in GitHub Desktop.
strange ruby parsing
require 'pp'
raw = File.read 'redis.conf'
pp raw.lines.reject { |line| line =~ %r{^\s*[#]} }
pp raw.lines.reject do |line|
line =~ %r{^\s*[#]}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment