/ruby_project_creator

Script to create new project setup

Primary LanguageRuby

Ruby Project Creator

Script that creates directories and files for a Ruby project

Specifications

  • Create root directory
    • Example Input: "new_project"
    • Example Output: new directory "Desktop/new_project"
  • Create directories for lib and spec within the root directory
    • Example Output: root/lib root/spec
  • Create files within the root directory for README and Gemfile
    • Example Output: root/README.md root/Gemfile
  • Create rb within spec folder
    • Example Output: spec/spec.rb
  • Create rb within lib folder
    • Example Output: lib/.rb