Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

indicator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

indicator

  • 1.0.4
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= Indicator Display activity with ASCII spinners and progress indicators.

= Description Sometimes you need to display activity on the text console to inform the user that the program is actually doing something. Be funny with a lot predefined sets or make you own widget to display an animation text during a long-running process in your console app.

=Installation ==From the command line. gem install indicator

==Using Gemfile.

1 Add to your application Gemfile gem 'indicator'

2 Type bundle install

=Usage ==Animated

Indicator::spin do 10.times do sleep 0.5 end end

==On demand update

Indicator::spin(:ondemand => true) do |spinner| 10.times do spinner.spinning sleep 0.2 end end

==Manual control

spinner = Indicator.spinner 10.times do spinner.spinning sleep 0.2 end spinner.clean

==Predefined sets Indicator::spin :set => :p do 10.times do sleep 0.5 end end

Available sets: :x :< :> :V :dots :bars :p :bqpd :-

UNICODE extra sets: :arrows :box :braile

==Custom set Indicator::spin :frames => %w{ * + } do 10.times do sleep 0.5 end end

=Advanced usage ===Using count Use int method to increment percent

Indicator::spin :count => 20 do |spin| 10.times do spin.inc 2 sleep 0.2 end end

Default increment is 1.

===Using count, pre-text and post-text Indicator::spin :pre => "Work", :frames => [' ', '. ', '.. ', '...'], :count => 10, :post => ' in progress' do |spin| 10.times do spin.inc sleep 0.2 end spin.clear end

:pre_percent and :post_percent is also available.

===Change post-text Indicator::spin :pre => "Work", :frames => [' ', '. ', '.. ', '...'], :count => 10 do |spin| 10.times do |i| spin.inc spin.post= " in progress #{i} of 10" sleep 0.2 end end

FAQs

Package last updated on 13 Feb 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc