Sha256: 9bf43d72ad113d9af1f9e090d4611ccaed29af74e4103ab20efe0b5fc2d6d1a1
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
module Padrino module Generators module Components module Orms module MongomapperGen MONGO = (<<-MONGO).gsub(/^ {10}/, '') MongoMapper.connection = Mongo::Connection.new('localhost', nil, :logger => logger) case Padrino.env when :development then MongoMapper.database = 'your_db_development' when :production then MongoMapper.database = 'your_db_production' when :test then MongoMapper.database = 'your_db_test' end MONGO def setup_orm require_dependencies 'mongo_mapper' create_file("config/database.rb", MONGO) empty_directory('app/models') end MM_MODEL = (<<-MODEL).gsub(/^ {10}/, '') class !NAME! include MongoMapper::Document # key <name>, <type> !FIELDS! timestamps! end MODEL def create_model_file(name, fields) model_path = destination_root('app/models/', "#{name.to_s.underscore}.rb") field_tuples = 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 end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
padrino-gen-0.9.1 | lib/padrino-gen/generators/components/orms/mongomapper_gen.rb |
padrino-gen-0.9.0 | lib/padrino-gen/generators/components/orms/mongomapper_gen.rb |