class Rouge::TextAnalyzer
def shebang?(match)
This normalizes things so that `text.shebang?('bash')` will detect
Check if the given shebang is present.
def shebang?(match) match = /\b#{match}(\s|$)/ match === shebang end
def shebang?(match) match = /\b#{match}(\s|$)/ match === shebang end