Created
December 22, 2015 01:48
-
-
Save halferty/200d02dcf4e61871a995 to your computer and use it in GitHub Desktop.
Code-golfed source code comment banner generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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