MONGO = (<<-MONGO) unless defined?(MONGO) MongoMapper.connection = Mongo::Connection.new('localhost', nil, :logger => logger) case Padrino.env when :development then MongoMapper.database = '!NAME!_development' when :production then MongoMapper.database = '!NAME!_production' when :test then MongoMapper.database = '!NAME!_test' end MONGO def setup_orm require_dependencies 'bson_ext', :require => 'mongo' require_dependencies 'mongo_mapper' create_file("config/database.rb", MONGO.gsub(/!NAME!/, @app_name.underscore)) empty_directory('app/models') end MM_MODEL = (<<-MODEL) unless defined?(MM_MODEL) class !NAME! include MongoMapper::Document # key , !FIELDS! timestamps! end MODEL # options => { :fields => ["title:string", "body:string"], :app => 'app' } def create_model_file(name, options={}) model_path = destination_root(options[:app], 'models', "#{name.to_s.underscore}.rb") field_tuples = options[:fields].collect { |value| value.split(":") } column_declarations = field_tuples.collect { |field, kind| "key :#{field}, #{kind.camelize}" }.join("\n ") model_contents = MM_MODEL.gsub(/!NAME!/, name.to_s.camelize) model_contents.gsub!(/!FIELDS!/, column_declarations) create_file(model_path, model_contents) end def create_model_migration(filename, name, fields) # NO MIGRATION NEEDED end def create_migration_file(migration_name, name, columns) # NO MIGRATION NEEDED end