简体   繁体   English

我可以获取Ruby on Rails组件列表吗?

[英]Can i get Ruby on Rails components List?

I'm a PHP developer on Zend framework. 我是Zend框架的PHP开发人员。 I'm checking ROR. 我正在检查ROR。

Can i get Ruby on Rails components List? 我可以获取Ruby on Rails组件列表吗? Like in ZF: http://framework.zend.com/manual/1.6/en/requirements.zendcomponents.html 就像在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) 应用程式所需的特定版本宝石(可在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 您的不同2环境的数据库设置以及sqlite,mysql,postgres等数据库引擎
  8. server to run your app 服务器运行您的应用
  9. management of your assests in app/assests folder 在app / assests文件夹中管理资产
  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. 并且此页面还包含有关重要Rails组件的大量信息。

For Rails there isn't any official list like the Zend one you linked. 对于Rails,没有像您链接的Zend这样的正式列表。 I use Google, or sometimes The Ruby Toolbox 我使用Google,有时也使用Ruby工具箱

The rails components are packed as gems, to get the full list of gems go to http://rubygems.org/gems rails组件打包为宝石,要获取宝石的完整列表,请访问http://rubygems.org/gems

Then there are some sites like Ruby Toolbox that help you choosing by providing statistics about usage and development. 然后有一些站点,例如Ruby Toolbox ,可以通过提供有关使用和开发的统计信息来帮助您选择。

Gather a list of requirements and then search if there is already a gem providing that functionality. 收集需求列表,然后搜索是否已经有提供该功能的gem。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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