Sha256: 59f527ad3b268bab2a6dd88c91c37a339986e09516c90c07ae6fb784dcb44c3f

Contents?: true

Size: 540 Bytes

Versions: 28

Compression:

Stored size: 540 Bytes

Contents

module Ufo
  module Booter
    def boot
      run_hooks
    end

    # Special boot hooks run super early.
    # Useful for setting env vars and other early things.
    #
    #    .ufo/boot.rb
    #    .ufo/boot/dev.rb
    #
    def run_hooks
      run_hook
      run_hook(Ufo.env)
      Ufo::Config::Inits.run_all
    end

    def run_hook(env=nil)
      name = env ? "boot/#{env}" : "boot"
      path = "#{Ufo.root}/.ufo/config/#{name}.rb" # IE: .ufo/boot/dev.rb
      require path if File.exist?(path)
    end

    extend self
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
ufo-6.3.13 lib/ufo/booter.rb
ufo-6.3.12 lib/ufo/booter.rb
ufo-6.3.11 lib/ufo/booter.rb
ufo-6.3.10 lib/ufo/booter.rb
ufo-6.3.9 lib/ufo/booter.rb
ufo-6.3.8 lib/ufo/booter.rb
ufo-6.3.7 lib/ufo/booter.rb
ufo-6.3.6 lib/ufo/booter.rb
ufo-6.3.5 lib/ufo/booter.rb
ufo-6.3.4 lib/ufo/booter.rb
ufo-6.3.3 lib/ufo/booter.rb
ufo-6.3.2 lib/ufo/booter.rb
ufo-6.3.1 lib/ufo/booter.rb
ufo-6.3.0 lib/ufo/booter.rb
ufo-6.2.5 lib/ufo/booter.rb
ufo-6.2.4 lib/ufo/booter.rb
ufo-6.2.3 lib/ufo/booter.rb
ufo-6.2.2 lib/ufo/booter.rb
ufo-6.2.1 lib/ufo/booter.rb
ufo-6.2.0 lib/ufo/booter.rb