remove trailing white-spaces from lib/generators/redmine_plugin_model/redmine_plugin_model_generator.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9297 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
fc71741101
commit
3b6be9ca4e
|
@ -3,7 +3,7 @@ require 'rails_generator/generators/components/model/model_generator'
|
||||||
|
|
||||||
class RedminePluginModelGenerator < ModelGenerator
|
class RedminePluginModelGenerator < ModelGenerator
|
||||||
attr_accessor :plugin_path, :plugin_name, :plugin_pretty_name
|
attr_accessor :plugin_path, :plugin_name, :plugin_pretty_name
|
||||||
|
|
||||||
def initialize(runtime_args, runtime_options = {})
|
def initialize(runtime_args, runtime_options = {})
|
||||||
runtime_args = runtime_args.dup
|
runtime_args = runtime_args.dup
|
||||||
usage if runtime_args.empty?
|
usage if runtime_args.empty?
|
||||||
|
@ -12,11 +12,11 @@ class RedminePluginModelGenerator < ModelGenerator
|
||||||
@plugin_path = "vendor/plugins/#{plugin_name}"
|
@plugin_path = "vendor/plugins/#{plugin_name}"
|
||||||
super(runtime_args, runtime_options)
|
super(runtime_args, runtime_options)
|
||||||
end
|
end
|
||||||
|
|
||||||
def destination_root
|
def destination_root
|
||||||
File.join(Rails.root, plugin_path)
|
File.join(Rails.root, plugin_path)
|
||||||
end
|
end
|
||||||
|
|
||||||
def manifest
|
def manifest
|
||||||
record do |m|
|
record do |m|
|
||||||
# Check for class naming collisions.
|
# Check for class naming collisions.
|
||||||
|
@ -31,7 +31,7 @@ class RedminePluginModelGenerator < ModelGenerator
|
||||||
m.template 'model.rb.erb', File.join('app/models', class_path, "#{file_name}.rb")
|
m.template 'model.rb.erb', File.join('app/models', class_path, "#{file_name}.rb")
|
||||||
m.template 'unit_test.rb.erb', File.join('test/unit', class_path, "#{file_name}_test.rb")
|
m.template 'unit_test.rb.erb', File.join('test/unit', class_path, "#{file_name}_test.rb")
|
||||||
|
|
||||||
unless options[:skip_fixture]
|
unless options[:skip_fixture]
|
||||||
m.template 'fixtures.yml', File.join('test/fixtures', "#{table_name}.yml")
|
m.template 'fixtures.yml', File.join('test/fixtures', "#{table_name}.yml")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue