Sha256: c472b4143f295628f6551da151425e328bf10c0af67ec1af1a39c919f4b1c922
Contents?: true
Size: 1.16 KB
Versions: 7
Compression:
Stored size: 1.16 KB
Contents
module Exodus class MigrationInfo attr_accessor :info, :migrations_directory attr_reader :config_file, :db, :connection def initialize(file = nil) config_file = file if file end def db=(database) MongoMapper.database = database end def connection=(conn) MongoMapper.connection = conn end def config_file=(file) if File.exists?(file) @config_file = file @info = YAML.load_file(file) else raise ArgumentError, "#{file} not found" end end def migrate verify_yml_syntax { @info['migration']['migrate'] } end def rollback verify_yml_syntax { @info['migration']['rollback'] } end def migrate_custom verify_yml_syntax { @info['migration']['custom']['migrate'] } end def rollback_custom verify_yml_syntax { @info['migration']['custom']['rollback'] } end def to_s @info end private def verify_yml_syntax Raise StandardError, "No configuration file specified" unless self.config_file begin yield if block_given? rescue Raise StandardError, "Syntax error detected in config file #{self.config_file}. To find the good syntax take a look at the documentation." end end end end
Version data entries
7 entries across 7 versions & 1 rubygems