Skip to content

Instantly share code, notes, and snippets.

@drnic
Created July 16, 2012 15:01
Show Gist options
  • Select an option

  • Save drnic/3123187 to your computer and use it in GitHub Desktop.

Select an option

Save drnic/3123187 to your computer and use it in GitHub Desktop.
tree of a rails app
$ tree -d
.
├── app
│   ├── controllers
│   ├── helpers
│   ├── models
│   └── views
│   ├── layouts
│   ├── lists
│   ├── saml
│   ├── tasks
│   └── users
├── config
│   ├── environments
│   ├── initializers
│   └── locales
├── db
│   └── migrate
├── doc
├── lib
│   └── tasks
├── log
├── public
│   ├── images
│   ├── javascripts
│   └── stylesheets
│   └── images
├── script
├── test
│   ├── fixtures
│   ├── functional
│   ├── performance
│   └── unit
│   └── helpers
├── tmp
│   ├── cache
│   ├── pids
│   ├── sessions
│   └── sockets
└── vendor
└── plugins
39 directories
$ tree -d -L 1
.
├── app
├── config
├── db
├── doc
├── lib
├── log
├── public
├── script
├── test
├── tmp
└── vendor
11 directories
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment