免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1205 | 回复: 0
打印 上一主题 下一主题

Using Plugins in Your App [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-05-20 11:53 |只看该作者 |倒序浏览
we usually use five or six plugins in each app.
--David Heinemeier Hansson at Canada on Rails
Plugins are self-contained libraries made specially for Rails. They are a great
way to reuse someone else’s code or to package your own code for reuse.
Unlike gems, plugins are installed directly into a specific Rails app. This
makes it easier to deploy them remotely along with an entire application.
I mentioned
previously

that the following places are good sources for plugins:

Discover and Install(you should run the script in the project directory!)
Once you’ve found a plugin that does what you want, install it into your
existing Rails app like this:
# Install a plugin from a known source
./script/plugin install calendar_helper
#
Similar on Windows
ruby script/plugin install calendar_helper
# Install from a specific url
./script/plugin install http://topfunky.net/svn/plugins/calendar_helper
# Install by linking it directly
within Subversion
./script/plugin install -x calendar_helper
If the script doesn’t automatically find the plugin, run the discovery action
which looks for all the sources on the Rails wiki:
./script/plugin discover
To uninstall a plugin, you can:
  • Delete the specific folder for the plugin
  • Remove it with svn delete
  • Unlink it with svn propdel svn:externals vendor/plugins/

               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/25407/showart_1933532.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP