Sha256: 92aaf7789eecf76f50b408e601614c894d9219be35c3f87063445a0a4d5f03ab
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
require File.expand_path(File.dirname(__FILE__) + "/lib/insert_commands.rb") class TruckGenerator < Rails::Generator::Base def manifest record do |m| @legacy_models = Dir.glob(RAILS_ROOT + '/app/models/*.rb').collect { |model_path| File.basename(model_path).gsub('.rb', '') } m.directory 'app/models/legacy' m.file 'legacy_base.rb', 'app/models/legacy/legacy_base.rb' @legacy_models.each do |model_name| m.template 'legacy_model.erb', "app/models/legacy/legacy_#{model_name.downcase}.rb", :assigns => { :model_name => model_name } end m.directory 'lib/tasks' m.template 'legacy_task.erb', 'lib/tasks/legacy.rake', :assigns => { :legacy_models => @legacy_models } snippet = <<EOS legacy: adapter: mysql database: #{RAILS_ROOT.split('/').last}_legacy encoding: utf8 username: password: EOS m.append "config/database.yml", snippet snippet = 'config.load_paths += %W( #{RAILS_ROOT}/app/models/legacy )' m.insert_after "config/environment.rb", snippet, '^Rails::Initializer\.run do.+$' end end end
Version data entries
4 entries across 4 versions & 1 rubygems