jfelchner/ruby-progressbar

View on GitHub
lib/progressbar.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require 'ruby-progressbar/base'
require 'ruby-progressbar/refinements' if Module.
                                         private_instance_methods.
                                         include?(:using)

class ProgressBar
  def self.create(*args)
    ProgressBar::Base.new(*args)
  end
end