Sha256: 7774b49281f9186c17c3b072e599f61310536bb759a373a969b7c27861a3721e
Contents?: true
Size: 559 Bytes
Versions: 25
Compression:
Stored size: 559 Bytes
Contents
module Jobshop module Generators module OrmHelpers private def model_exists? File.exist?(File.join(destination_root, model_path)) end def migration_exists?(table_name) Dir.glob("#{File.join(destination_root, migration_path)}/[0-9]*_*.rb").grep(/\d+_add_jobshop_to_#{table_name}.rb$/).first end def migration_path @migration_path ||= File.join("db", "migrate") end def model_path @model_path ||= File.join("app", "models", "#{file_path}.rb") end end end end
Version data entries
25 entries across 25 versions & 1 rubygems