简体   繁体   中英

Can i get Ruby on Rails components List?

I'm a PHP developer on Zend framework. I'm checking ROR.

Can i get Ruby on Rails components List? Like in ZF: http://framework.zend.com/manual/1.6/en/requirements.zendcomponents.html

In rails, the main components to be noticed are as:

  1. configuration for your app
  2. gems with specific version, required for your app(available at rubygems.org)
  3. routes information for your app
  4. scaffolding and generators in your app
  5. three different environment for your app, as Development, Testing, Production
  6. testing strategies for your app, like unit test, functional tests
  7. Databases settings for your different-2 environments, and database engine like sqlite, mysql, postgres
  8. server to run your app
  9. management of your assests in app/assests folder
  10. Methods to deploy your app and much more......

    In addition, You should go through these slides

    and this page also contains a lot info for important rails component.

For Rails there isn't any official list like the Zend one you linked. I use Google, or sometimes The Ruby Toolbox

The rails components are packed as gems, to get the full list of gems go to http://rubygems.org/gems

Then there are some sites like Ruby Toolbox that help you choosing by providing statistics about usage and development.

Gather a list of requirements and then search if there is already a gem providing that functionality.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM