1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 23:11:12 +00:00

redmine_plugin_model_generator improvements (#27659).

Patch by Javier Menéndez Rizo.

git-svn-id: http://svn.redmine.org/redmine/trunk@18298 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2019-06-20 14:16:58 +00:00
parent c4a9d4cd4d
commit 7b06ccef21
2 changed files with 12 additions and 3 deletions

View File

@ -22,7 +22,7 @@ class RedminePluginModelGenerator < Rails::Generators::NamedBase
source_root File.expand_path("../templates", __FILE__) source_root File.expand_path("../templates", __FILE__)
argument :model, :type => :string argument :model, :type => :string
argument :attributes, :type => :array, :default => [], :banner => "field[:type][:index] field[:type][:index]" argument :attributes, :type => :array, :default => [], :banner => "field[:type][:index] field[:type][:index]"
class_option :migration, :type => :boolean class_option :migration, :type => :boolean, :default => true
class_option :timestamps, :type => :boolean class_option :timestamps, :type => :boolean
class_option :parent, :type => :string, :desc => "The parent class for the generated model" class_option :parent, :type => :string, :desc => "The parent class for the generated model"
class_option :indexes, :type => :boolean, :default => true, :desc => "Add indexes for references and belongs_to columns" class_option :indexes, :type => :boolean, :default => true, :desc => "Add indexes for references and belongs_to columns"
@ -44,10 +44,13 @@ class RedminePluginModelGenerator < Rails::Generators::NamedBase
template 'model.rb.erb', "#{plugin_path}/app/models/#{model.underscore}.rb" template 'model.rb.erb', "#{plugin_path}/app/models/#{model.underscore}.rb"
template 'unit_test.rb.erb', "#{plugin_path}/test/unit/#{model.underscore}_test.rb" template 'unit_test.rb.erb', "#{plugin_path}/test/unit/#{model.underscore}_test.rb"
migration_filename = "%03i_#{@migration_filename}.rb" % (migration_number + 1) return unless options[:migration]
migration_filename = "%.14d_#{@migration_filename}.rb" % migration_number
template "migration.rb", "#{plugin_path}/db/migrate/#{migration_filename}" template "migration.rb", "#{plugin_path}/db/migrate/#{migration_filename}"
end end
private
def attributes_with_index def attributes_with_index
attributes.select { |a| a.has_index? || (a.reference? && options[:indexes]) } attributes.select { |a| a.has_index? || (a.reference? && options[:indexes]) }
end end
@ -56,5 +59,11 @@ class RedminePluginModelGenerator < Rails::Generators::NamedBase
current = Dir.glob("#{plugin_path}/db/migrate/*.rb").map do |file| current = Dir.glob("#{plugin_path}/db/migrate/*.rb").map do |file|
File.basename(file).split("_").first.to_i File.basename(file).split("_").first.to_i
end.max.to_i end.max.to_i
[current + 1, Time.now.utc.strftime("%Y%m%d%H%M%S").to_i].max
end
def parent_class_name
options[:parent] || "ActiveRecord::Base"
end end
end end

View File

@ -1,2 +1,2 @@
class <%= @model_class %> < ActiveRecord::Base class <%= @model_class %> < <%= parent_class_name.classify %>
end end