Simplate generates a perfect directory structure for a well organized Ruby app.
├── Gemfile
├── lib
│ ├── models
│ └── modules
└── spec
├── models
├── modules
└── spec_helper.rb
Simplate uses RSpec as the default test suite.
Add this line to your application's Gemfile:
gem 'simplate'
And then execute:
$ bundle
Or install it yourself as:
$ gem install simplate
- Install
simplategem. - Open Terminal
- Go to the directory where you want to generate the simplate boilerplate
- Run
$ simplate some_app_name
- Fork it ( http://github.com//simplate/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request

