AjaxModal
AjaxModal is an AJAX scaffold generator used to provide a Bootstrap Modal workflow.
Installation
Add this line to your application's Gemfile:
gem 'ajax_modal'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ajax_modal
Usage
$ rails g ajax_modal [RESOURCE_NAME]
Quick Simple Example:
-
Add ajax_modal to your application's Gemfile:
gem 'ajax_modal'
-
Run 'bundle' to install this gem in your project:
$ bundle
-
Generate new scaffold called e.g. posts:
$ rails generate scaffold post title body:text published:boolean
-
Don't forget to run migration:
$ rake db:migrate
-
Generate ajax for posts scaffold with ajax_modal generator:
$ rails g ajax_modal post
Open your project in a browser.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ajax_modal. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.