
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
= 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
Unknown package
We found that indicator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.