Sha256: c12c5a1cd8d8a9d60c81789f090559ecc08bf9786eb802ca1a196a49e6790ea5

Contents?: true

Size: 294 Bytes

Versions: 1

Compression:

Stored size: 294 Bytes

Contents

module SpringMvcScaffold::Runner

  class Generator
    def run(args)
      project_path = args.shift
      if SpringMvcScaffold::Runner::Help.help?(project_path)
        AppGenerator.start(["-h"])
      else
        AppGenerator.new(project_path, args).invoke_all
      end
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
springmvc-scaffold-1.0.1 lib/springmvc-scaffold/runner/generator.rb