Sha256: 044fb003d6b4ad69934b447044da9ead17f997598cd4f31d3e13422dceceddd5
Contents?: true
Size: 313 Bytes
Versions: 15
Compression:
Stored size: 313 Bytes
Contents
module DataMigrate include ActiveSupport::Configurable class << self def configure yield config end def config @config ||= Config.new end end class Config attr_accessor :data_migrations_path def initialize @data_migrations_path = "db/data/" end end end
Version data entries
15 entries across 15 versions & 1 rubygems