CSC/ECE 517 Spring 2015/ch1b 22 SF: Difference between revisions
Line 7: | Line 7: | ||
The topic write up for this page can be found here. | The topic write up for this page can be found here. | ||
== Introduction == | == Introduction == |
Revision as of 21:42, 18 February 2015
Simple Form
Simple form is a Rails gem used for easily creating Rails forms.
The topic write up for this page can be found here.
Introduction
Background
Rails forms made easy
Simple Form aims to be as flexible as possible while helping you with powerful components to create your forms . The basic goal of Simple Form is to not touch your way of defining the layout, letting you find the better design for your eyes. Most of the DSL was inherited from Formtastic.
Getting Start
Installation
You can use the following code to install simple_form:
gem install simple_form
But I recommend you to use the following way:
Add the following code to your Gemfile:
gem 'simple_form'
And in your Rails application root directory, run the following command:
bundle install
Run the following code to generate the simple_form into your app:
rails generate simple_form install
Work with Bootstrap
Similar to H5BP and 960 Grid System, Bootstrap is a simple and very popular front-end framework.
With the following code while installing Simple Form, you can integrate Simple Form to Bootstrap
# rails generate simple_form:install --bootstrap
You have to be sure that you added a copy of the Bootstrap assets on your application.
For more information see the generator output, out example application code and the live example app.