1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00
thoughtbot--factory_bot_rails/lib/generators/factory_bot.rb
Daniel Colson ce8bfb409b Run standardrb
This commit applies the changes from running `standardrb --fix`
2020-06-10 17:13:56 -04:00

28 lines
576 B
Ruby

require "rails/generators/named_base"
module FactoryBot
module Generators
class Base < Rails::Generators::NamedBase #:nodoc:
def self.source_root
path = File.join(
File.dirname(__FILE__),
"factory_bot",
generator_name,
"templates"
)
File.expand_path(path)
end
def factory_name
class_name.gsub("::", "").underscore
end
def explicit_class_option
return if class_name.underscore == factory_name
", class: '#{class_name}'"
end
end
end
end