module Bnm::Spinner

Constants

ASCII

Public Class Methods

loading() click to toggle source
# File lib/bnm/spinner.rb, line 5
def self.loading
  ASCII.each do |ascii|
    print "\rLoading artists... #{ascii} ".yellow
    sleep 0.2
  end
end