Skip to content

eendroroy/spin_r

Repository files navigation

SpinR

GitHub tag Gem Version Downloads Contributors

Show any time consuming process's output with a spinner.

Installation

Add this line to your application's Gemfile:

gem 'spin_r'

And then execute:

$ bundle

Or install it yourself as:

$ gem install spin_r

Usage

SpinR.spin do
  sleep 4
  puts 'You spin my head right round!'
end

Define spinner style:

SpinR.spin SpinR::Spinners::TRIANGLE do
  sleep 4
  puts 'You spin my head right round!'
end

Available spinners:

  • SpinR::Spinners::TRADITIONAL
  • SpinR::Spinners::BLOCK
  • SpinR::Spinners::DOTTED_1
  • SpinR::Spinners::DOTTED_2
  • SpinR::Spinners::DOTTED_3
  • SpinR::Spinners::DOTTED_4
  • SpinR::Spinners::WORLD
  • SpinR::Spinners::TRIANGLE
  • SpinR::Spinners::EMOJI

asciicast

v1.0.2

asciicast

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/eendroroy/spin_r. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the SpinR project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.