colorls/lib/colorls.rb
Claudio Bley d528bf18ef Introduce Layout classes and use them
* add `Layout` base class which contains the base (binary) algorithm
  for finding the maximum amount of columns fitting the given limit
* add `HorizontalLayout` and use it in `Core`
* add `SingleColumnLayout` and use it in `Core`
2019-07-01 23:16:33 +02:00

17 lines
336 B
Ruby

# frozen_string_literal: true
require 'yaml'
require 'etc'
require 'English'
require 'filesize'
require 'io/console'
require 'rainbow/ext/string'
require 'clocale'
require 'colorls/core'
require 'colorls/fileinfo'
require 'colorls/flags'
require 'colorls/layout'
require 'colorls/yaml'
require 'colorls/monkeys'
require 'colorls/git'