Sha256: cbf78d4dad3e18f869868f6d94d7ec6016a00bce0590f31aea46cf044b418257
Contents?: true
Size: 1.22 KB
Versions: 53
Compression:
Stored size: 1.22 KB
Contents
require_relative "../super_scaffold_base" class JoinModelGenerator < Rails::Generators::Base include SuperScaffoldBase source_root File.expand_path("templates", __dir__) namespace "super_scaffold:join_model" argument :join_model argument :left_association argument :right_association class_option :skip_migration_generation, type: :boolean, default: false, desc: "Don't generate the model migration" class_option :skip_form, type: :boolean, default: false, desc: "Don't alter the new/edit form" class_option :skip_show, type: :boolean, default: false, desc: "Don't alter the show view" class_option :skip_table, type: :boolean, default: false, desc: "Only add to the new/edit form and show view." class_option :skip_locales, type: :boolean, default: false, desc: "Don't alter locale files" class_option :skip_api, type: :boolean, default: false, desc: "Don't alter the api payloads" class_option :skip_model, type: :boolean, default: false, desc: "Don't alter the model file" def generate # We add the name of the specific super_scaffolding command that we want to # invoke to the beginning of the argument string. ARGV.unshift "join-model" BulletTrain::SuperScaffolding::Runner.new.run end end
Version data entries
53 entries across 53 versions & 1 rubygems