Skip to content

Instantly share code, notes, and snippets.

@wycats
Created October 30, 2008 05:38
Show Gist options
  • Save wycats/20923 to your computer and use it in GitHub Desktop.
Save wycats/20923 to your computer and use it in GitHub Desktop.
def self.load_dependencies
dependencies.each {|d| puts d}
dependencies.each do |dependency|
puts "ABOUT TO LOAD: #{dependency.to_s}"
Kernel.load_dependency(dependency)
end
nil
end
yehuda-katzs-macbook-pro-2:haml wycats$ merb
Loading init file from /Users/wycats/Code/merb/merb-apps/haml/config/init.rb
Loading /Users/wycats/Code/merb/merb-apps/haml/config/environments/development.rb
merb-assets (= 0.9.12, runtime)
merb-cache (= 0.9.12, runtime)
merb-helpers (= 0.9.12, runtime)
merb-mailer (= 0.9.12, runtime)
merb-slices (= 0.9.12, runtime)
merb-auth-core (= 0.9.12, runtime)
merb-auth-more (= 0.9.12, runtime)
merb-auth-slice-password (= 0.9.12, runtime)
merb-param-protection (= 0.9.12, runtime)
merb-exceptions (= 0.9.12, runtime)
dm-core (= 0.9.6, runtime)
dm-aggregates (= 0.9.6, runtime)
dm-migrations (= 0.9.6, runtime)
dm-timestamps (= 0.9.6, runtime)
dm-types (= 0.9.6, runtime)
dm-validations (= 0.9.6, runtime)
merb_datamapper (>= 0, runtime)
merb-haml (>= 0, runtime)
ABOUT TO LOAD: merb-assets (= 0.9.12, runtime)
LOADING: merb-assets (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-cache (= 0.9.12, runtime)
LOADING: merb-cache (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-helpers (= 0.9.12, runtime)
LOADING: merb-helpers (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-mailer (= 0.9.12, runtime)
LOADING: merb-mailer (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-slices (= 0.9.12, runtime)
LOADING: merb-slices (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-auth-core (= 0.9.12, runtime)
LOADING: merb-auth-core (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-auth-more (= 0.9.12, runtime)
LOADING: merb-auth-more (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-auth-slice-password (= 0.9.12, runtime)
LOADING: merb-auth-slice-password (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-param-protection (= 0.9.12, runtime)
LOADING: merb-param-protection (= 0.9.12, runtime), []
ABOUT TO LOAD: merb-exceptions (= 0.9.12, runtime)
LOADING: merb-exceptions (= 0.9.12, runtime), []
ABOUT TO LOAD: dm-core (= 0.9.6, runtime)
LOADING: dm-core (= 0.9.6, runtime), []
ABOUT TO LOAD: dm-aggregates (= 0.9.6, runtime)
LOADING: dm-aggregates (= 0.9.6, runtime), []
ABOUT TO LOAD: dm-migrations (= 0.9.6, runtime)
LOADING: dm-migrations (= 0.9.6, runtime), []
ABOUT TO LOAD: dm-timestamps (= 0.9.6, runtime)
LOADING: dm-timestamps (= 0.9.6, runtime), []
ABOUT TO LOAD: dm-types (= 0.9.6, runtime)
LOADING: dm-types (= 0.9.6, runtime), []
ABOUT TO LOAD: dm-validations (= 0.9.6, runtime)
LOADING: dm-validations (= 0.9.6, runtime), []
ABOUT TO LOAD: merb_datamapper (>= 0, runtime)
LOADING: merb_datamapper (>= 0, runtime), []
ABOUT TO LOAD: dm-core (>= 0, runtime)
LOADING: dm-core (>= 0, runtime), []
~ Connecting to database...
~ Loaded slice 'MerbAuthSlicePassword' ...
~ Parent pid: 699
~ Compiling routes...
~ Activating slice 'MerbAuthSlicePassword' ...
merb : worker (port 4000) ~ Starting Mongrel at port 4000
merb : worker (port 4000) ~ Successfully bound to port 4000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment