在Windows上使用ROR和MongoDB

         Ruby和MongoDB在Linux上结合非常自然,开发起来十分方便快捷,而在Windows上却稍微有些麻烦。

         ROR默认使用ActiveRecord进行数据库操作,而如果要使用MongoDB代替MySQL或者SQLite,就要禁用ActiveRecord。那么创建新项目的命令就是:

rails new watermelon --skip-active-record

项目创建后,进入config目录,可以看到里面并没有database.yml文件。接着编辑Gemfile,添加下面两行内容:

source 'http://gemcutter.org'

gem 'mongo_mapper'

然后运行

bundle install

会安装:bson 1.3.1,mongo 1.3.1,plucky 0.3.8和mongo_mapper 0.9.1。除了这些之外,还需要bson_ext,于是就想通过

gem install bson_ext

进行安装,可是得到了下面的错误信息:

         从提示信息中可以看出需要安装一个开发工具包。步骤如下:

         1. 在RubyInstaller for Windows的下载页面上http://rubyinstaller.org/downloads找到DevKit-tdm-32-4.5.1-20101214-1400-sfx.exe,直接点击下载;

         2. 下载完成后,双击解压到某个目录下,例如:C:/work/tools/DevKit

         3. 在命令行窗口下进入到C:/work/tools/DevKit目录下,运行

ruby dk.rb init
在C:/work/tools/DevKit下会产生一个config.yml文件,

         4. 编辑config.yml文件,初始内容类似:

# This configuration file contains the absolute path locations of all
# installed Rubies to be enhanced to work with the DevKit. This config
# file is generated by the 'ruby dk.rb init' step and may be modified
# before running the 'ruby dk.rb install' step. To include any installed
# Rubies that were not automagically discovered, simply add a line below
# the triple hyphens with the absolute path to the Ruby root directory.
#
# Example:
#
# ---
# - C:/ruby19trunk
# - C:/ruby192dev
#
在其中加入Ruby的安装目录,如:

---
- C:/work/tools/Ruby192

      5. 运行

ruby dk.rb install
相应的文件就安装C:/work/tools/Ruby192/lib/ruby/site_ruby下面。

     经过上面几步就完成了DevKit的安装,然后就可以通过

gem install bson_ext --platform=ruby

安装bson_ext。

      环境配置完成后,就可以进入ROR和MongoDB相结合的开发了。


      参考资料:

      MongoDB Ruby Driver Tutorial

      MongoDB  Ruby Language Center Rails3 - Getting - Started

      Ruby Installer Development Kit


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

mydeman

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值