rails plugins 做一个电子商务系统

第一阶段:

  把以下三个rails插件跑起来。
  • spree
  • active_merchant
  • OpenID_authentication_plugin:



gem update
 gem install rubygems-update -v 1.2.0

$sudo gem uninstall rubygems-update
待列出一个列表选择需要卸载的序号后回车 

卸载或是新安装都要执行下面命令.
  update_rubygems



  1. spree
  2.   开源电子商务应用.
      checkout 下来,我们需要本地化后,调整下css 和增加些少量功能,便可上线试运行。
      插件主页 http://github.com/akitaonrails/spree/tree/master
  3. active_merchant
  4. 处理与网银的支付接口的plugin
    插件主页: http://github.com/akitaonrails/active_merchant/tree/master

  5. OpenID_authentication_plugin:
  6.     OpenID是一种开放、离散式的用于用户数字标识的开源框架。在网络应用日益充斥的今天,作为终端用户的我们不得不在每个网站上设置帐号,并管理众多的帐号。而采用OpenID技术的话,你就无须再管理这些相互独立的帐号,而是通过认证服务器管理自己唯一的身份标识。
    插件主页: http://github.com/rails/open_id_authentication/tree/master

    OpenID原理(en): http://openid.net/specs/openid-authentication-2_0.html
    OpenID中文手册: http://www.matrix.org.cn/resource/article/2007-09-20/187c9604-671e-11dc-91f8-0da64dffe568.html

第二阶段:

酝酿中…………

你可能感兴趣的:(网络应用,电子商务,Ruby,Rails,rubygems)