We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great to support banners. We use this a lot in our scripts.
The text was updated successfully, but these errors were encountered:
That sounds useful, I would be interested in the api, do you have any code examples to show?
Sorry, something went wrong.
Sure - note that the ANSI colors are defined as constants. I'd be happy to wrap this up as a PR that uses pastel if you give me a bit of direction. :)
pastel
def banner(str, color: GREEN) now = Time.new.strftime("%H:%M:%S") s = "#{str} ".ljust(72, " ") puts "#{color}[#{now}] #{s}#{RESET}" end
and usage:
banner("Factoring primes...")
No branches or pull requests
It would be great to support banners. We use this a lot in our scripts.
The text was updated successfully, but these errors were encountered: