Skip to content

Instantly share code, notes, and snippets.

@nizaroni
Created March 24, 2015 00:01
Show Gist options
  • Save nizaroni/73ed73d0cf4c1a0681b4 to your computer and use it in GitHub Desktop.
Save nizaroni/73ed73d0cf4c1a0681b4 to your computer and use it in GitHub Desktop.
Ruby project folder structure.

Ruby project structure

my-project-folder/
└─┬── Gemfile
  ├── server.rb
  ├─┬ lib/
  │ └── (Ruby files: classes, modules, etc.)
  ├─┬ public/
  │ └── (Static files: CSS, JavaScript, images, fonts, etc.)
  ├─┬ spec/
  │ └── (Test files.)
  └─┬ views/
    └── (ERB files)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment