When working on Rails applications, I found myself creating files and tests manually by navigating the directory tree, and typing in names.<p>I didn't like it because:<p>1) Typos can happen
2) Navigating the directories is pain
3) lazy<p>Here is my solution. With this gem you can run `rails generate [PATTERN_TYPE] ...` to generate files and its tests in appropriate directories.<p>Currently you can generate service, policy, and PORO.