Sha256: 70c705666553618b6d04edc20af82a1e3c74a652b550970177063ab0b44b1a2b
Contents?: true
Size: 510 Bytes
Versions: 21
Compression:
Stored size: 510 Bytes
Contents
module Arcabouco class Application def initialize configure_root_directory puts "Booting Arcabouco #{Arcabouco::VERSION}" config_filename = File.join Arcabouco.root, 'config.rb' if File.file?(config_filename) require config_filename end end private def configure_root_directory Arcabouco.gem_root = File.expand_path("../..",__FILE__) Arcabouco.root = File.expand_path Bundler.root Dir.chdir Arcabouco.root end end end
Version data entries
21 entries across 21 versions & 1 rubygems