Description:
	Generates some boilerplate for the view partial containing the fields for a given association.
	If SimpleForm is installed and attributes are permitted in the model, will add input fields for them.

Example:
	# Without attributes
	rails generate abyme:view tasks
	# With a few attributes
	rails generate abyme:view tasks name description
	# With all attributes
	rails generate abyme:view tasks all_attributes