Modularize Sinatra
Modularized Code Generator for Sinatra. Gem available on rubygems More information at: http://goyalankit.com/blog/2013/07/23/modularize-sinatra/
Installation
$ gem install modularize_sinatra
Usage
To generate the skeleton structure with custom controller:
modularize_sinatra new myapp -C user
To Start the app:
rackup -p 9292
It will generate a default index page for you, which can be accessed at:
http://localhost:9292/
You'll get the following directory structure with above command:
.
├── config
│ └── environment.rb
├── lib
│ ├── controllers
│ │ └── user.rb
│ ├── views
│ │ └── users
│ │ └── index.erb
│ └── app.rb
├── spec
│ ├── controllers
│ │ └── user_spec.rb
│ └── spec_helper.rb
├── Gemfile
├── Rakefile
├── config.ru
└── myapp.rb
Without the -C
paramter( not recommended ), it will generate a default controller for you called Ping
and will create the following route:
GET http://localhost:9292/ping
> Ahoy! from Myapp 2013-04-07 00:33:58 +0530
Currently rspec
is configured by default. Hope to release support for other frameworks in future versions.
To Run specs:
bundle exec rake
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request