Sha256: 4dec3fc33f81b67d7c21799f150c769c1b5eafcc96fc45282ca2af8aaa915f3c
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# NOTE: # Alternative to use this helper is to inherit from ActiveRecord::Generators::Base # which provides the #next_migration_number class method that lets #migration_template work as expected # module Rails::Migration::Assist def self.included(base) #:nodoc: base.extend ClassMethods end module ClassMethods def migration_lookup_at(dirname) #:nodoc: Dir.glob("#{dirname}/[0-9]*_*.rb") end def migration_exists?(dirname, file_name) #:nodoc: migration_lookup_at(dirname).grep(/\d+_#{file_name}.rb$/).first end alias_method :first_migration_file, :migration_exists? def latest_migration_file(dirname, file_name) #:nodoc: migration_lookup_at(dirname).grep(/\d+_#{file_name}.rb$/).sort.last end def current_migration_number(dirname) #:nodoc: migration_lookup_at(dirname).collect do |file| File.basename(file).split("_").first.to_i end.max.to_i end def next_migration_number(dirname) #:nodoc: orm = Rails.configuration.generators.options[:rails][:orm] require "rails/generators/#{orm}" "#{orm.to_s.camelize}::Generators::Base".constantize.next_migration_number(dirname) rescue raise NotImplementedError end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
migration_assist-0.1.2 | lib/migration_assist/class_methods.rb |