Explain the features of ruby on rails.

devquora
devquora

Posted On: Feb 22, 2018

 

Some of the features of ruby on rails are listed below-
  • Meta-programming: code generation is used but for heavy lifting, it uses meta-programming.
  • Active record: objects are saved to the database through this framework. It identifies the columns in a schema and binds them to your domain object.
  • Scaffolding: it means it has the ability of creating temporary code automatically.
  • Convention over configuration: much configuration is not needed if the naming convention is followed.
  • Three environments: testing, development, and production are the three default environments in this framework.
  • Built-in testing: test cases are used in this for writing and executing the codes.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Ruby on Rails Interview Questions

    Mention all the naming conventions in ruby on rails.

    Following is a list of some naming conventions used in ruby on rails:Variables– it is used for the declaration of v..

    Ruby on Rails Interview Questions

    How is the model view controller framework used in ruby on rails?

    The web development is usually divided into three subsystems closely integrated to each other. They are: –Model (ac..

    Ruby on Rails Interview Questions

    What do you understand by rails?

    It is a web application framework which is written in ruby language and is developed by David Hansson. It is an open so..