Ideyabox
TODO: Write a gem description
Our statuses
Installation
Add this line to your application's Gemfile:
gem 'ideyabox'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ideyabox
Usage
Hey, people!
It's simple like this:
Generating admin layout
After installation generate all administrative staff (flag -f is for forced replacement of some files)
$ rails g ideyabox:admin -f
Generate some model or scaffold for your project
Add /admin route in your config/routes.rb in :admin namespace
namespace :admin do
root to: "your_controller#your_action"
end
like this
namespace :admin do
root to: "guests#index"
end
Generating admin assets
Admin Scaffold
Views for associated images
Crop functionality
TODO
- Add search engine
- Add scopes to models
- Use it
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