Created
October 30, 2008 05:38
-
-
Save wycats/20923 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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