module Dirby

This file is part of Dirby.

Foobar is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Foobar. If not, see <www.gnu.org/licenses/>.

This file is part of Dirby.

Foobar is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Foobar. If not, see <www.gnu.org/licenses/>.

This file is part of Dirby.

Foobar is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Foobar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Foobar. If not, see <www.gnu.org/licenses/>.

Constants

LIBRARIES

Libraries to be loaded at startup

VERSION

Public Class Methods

init(opts = {}) click to toggle source

Initialize the runtime environment.

# File lib/dirby.rb, line 26
def self.init(opts = {})
  puts "USING DIRBY #{Dirby::VERSION}"

  LIBRARIES.each do |lib|
    begin
      require lib
    rescue LoadError
      nil
    end
  end

  # enable loading/saving history
  History.new(opts) unless opts[:skip_history]

  # enable colorized output
  Colorize.enable(nil)
end