-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
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
Publish new release #47
Comments
Hi Andrejs 👋 Thanks for using this gem in your project. My plan was to look at the timer and multi-spinner issues. However, there is no reason why I cannot make this release earlier. I will see what I can do. |
@andrcuns This is still on my list and I plan to make a release this coming weekend. |
Hi @piotrmurach! Thanks for making this (and the other cool parts of |
@jgarth Yes, you can. The |
Also if you'd release we could use the 🚨 lighthouse-spinner ee6651a ;) |
+1 |
If the methods are not available, the README documentation should at least reflect that they are either not available but planned or they should be. removed from the README completely. I added this patch to my code for a log method: module TTY
class Spinner
# Log a message to the output
# This will clear the current spinner line, print the log message,
# and then redraw or resume the spinner on a new line.
#
# @param [String] message
# the log message to print
#
# @api public
def log(message)
synchronize do
clear_line # Clear the spinner
output.puts(message) # Log the message
redraw_indent # Redraw the spinner frame
end
end
end
end |
@piotrmurach, thanks for all of the work on the fleet of |
Hi,
I have been using spinner in one of my projects and it works great, however I could really use some of the latest
master
branch additions, mainly:log
method to print above spinnertty?
method which seems to be private in the released version.Have you considered pushing a new release any time soon?
The text was updated successfully, but these errors were encountered: