Sha256: 22fecb7750f4434817fa3b2800c43361ba874c3791a4d17ff821a53791a6acc7

Contents?: true

Size: 1.84 KB

Versions: 3

Compression:

Stored size: 1.84 KB

Contents

# SpinR

[![GitHub tag](https://img.shields.io/github/tag/eendroroy/spin_r.svg)](https://github.com/eendroroy/spin_r)
[![Gem Version](https://badge.fury.io/rb/spin_r.svg)](https://rubygems.org/gems/spin_r)
[![Downloads](https://img.shields.io/gem/dt/spin_r.svg)](https://rubygems.org/gems/spin_r)
[![Contributors](https://img.shields.io/github/contributors/eendroroy/spin_r.svg)](CONTRIBUTORS.md)


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

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'spin_r'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install spin_r

## Usage

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

Define spinner style:

```ruby
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

[![asciicast](http://asciinema.org/a/141149.png)](https://asciinema.org/a/141149)

## 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](http://contributor-covenant.org) code of conduct.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

## 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](https://github.com/eendroroy/spin_r/blob/master/CODE_OF_CONDUCT.md).

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spin_r-1.0.1 README.md
spin_r-1.0.0 README.md
spin_r-0.1.0 README.md