lib/ronin/cli/commands/new/project.rb in ronin-2.0.0 vs lib/ronin/cli/commands/new/project.rb in ronin-2.0.1

- old
+ new

@@ -21,29 +21,29 @@ require 'ronin/root' module Ronin class CLI module Commands - # - # Creates new Ruby project directory. - # - # ## Usage - # - # ronin new project [options] DIR - # - # ## Options - # - # --git Initializes a git repo - # --ruby-version VERSION The desired ruby version for the project - # --rakefile Creates a Rakefile - # -D, --dockerfile Adds a Dockerfile to the new project - # -h, --help Print help information - # - # ## Arguments - # - # PATH The directory to create - # class New < Command + # + # Creates new Ruby project directory. + # + # ## Usage + # + # ronin new project [options] DIR + # + # ## Options + # + # --git Initializes a git repo + # --ruby-version VERSION The desired ruby version for the project + # --rakefile Creates a Rakefile + # -D, --dockerfile Adds a Dockerfile to the new project + # -h, --help Print help information + # + # ## Arguments + # + # PATH The directory to create + # class Project < Command include Core::CLI::Generator template_dir File.join(ROOT,'data','new','project')