# Make the app's "gems" directory a place where gems are loaded from Gem.clear_paths Gem.path.unshift(MERB_ROOT / "gems") # Make the app's "lib" directory a place where ruby files get "require"d from $LOAD_PATH.unshift(MERB_ROOT / "lib") ### Merb doesn't come with database support by default. You need ### an ORM plugin. Install one, and uncomment one of the following lines, ### if you need a database. ### Uncomment for DataMapper ORM # use_orm :datamapper ### Uncomment for ActiveRecord ORM use_orm :activerecord ### Uncomment for Sequel ORM # use_orm :sequel ### This defines which test framework the generators will use ### rspec is turned on by default # use_test :test_unit use_test :rspec require 'facebooker' require 'itunes' require 'facebook'