Skip to content

Instantly share code, notes, and snippets.

@halferty
Created December 22, 2015 01:48
Show Gist options
  • Save halferty/200d02dcf4e61871a995 to your computer and use it in GitHub Desktop.
Save halferty/200d02dcf4e61871a995 to your computer and use it in GitHub Desktop.
Code-golfed source code comment banner generator
#!/usr/bin/env ruby
t=$*[0]
e='#'*79
r='#'+' '*77+'#'
puts [e,r,t.scan(/.{1,40}/).map{|a|m=r.clone;l=(79-a.size)/2;m[l..(l+a.size-1)]=a;m},r,e].join "\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment