Sha256: d35f0455e4d6a6f575e5c1430861f29d7309b07fe3cb58fbc58003ff62250c09
Contents?: true
Size: 1.06 KB
Versions: 7
Compression:
Stored size: 1.06 KB
Contents
require "rails/configuration" # Piggy back off of Rails Generators. class Jets::Generator def self.invoke(generator, *args) new(generator, *args).invoke end def initialize(generator, *args) @generator = generator @args = args end def invoke Rails::Generators.configure!(config) Rails::Generators.invoke(@generator, @args, behavior: :invoke, destination_root: Jets.root) end def config g = Rails::Configuration::Generators.new g.orm :active_record, migration: true, timestamps: true # TODO: support g.orm :dynamodb g.template_engine :erb g.test_framework false #:test_unit, fixture: false # g.test_framework :rspec # need to # TODO: load rspec configuration to use rspec g.stylesheets false g.javascripts false g.assets false g.api Jets.config.api_mode g.resource_route true g.templates.unshift(template_paths) g end def template_paths templates_path = File.expand_path("../generator/templates", __FILE__) [templates_path] end end
Version data entries
7 entries across 7 versions & 1 rubygems