参考了网上的一些相关文章,我搭建起了开发环境。具体做法如下:
(1)、安装Ruby
到http://www.ruby-lang.org/en/下载最新的Rub安装版本ruby186-25.exe,安装默认为:C:/ruby。安装成功后,在DOS下输入
gem install rails --include-dependencies 远程下载Rails安装。
(2)、安装Aptana+RadRails插件
打开Ecplips3.2选择工具栏中的Help->Software Updates->Find and Install…,弹出对话框(Install and Update),选择Search new features to install,点击下一步。
点击New Remote Site,建立新的远程安装路径:
点击
F
inish
。等待
Aptana+RadRails
安装完成后,重起
Eclipse3.2
(3)
、
Eclipse
下的
RadRails
参数配置
A.
选择
Window->Prefernces->Ruby->Installed Interpreters
,点击
Add
,设置
RubyVM home directory
为
Ruby
的所的根目录
(
先前的
Ruby
安装路径
)
,我这里是
C:/ruby
。
RubyVM display name
任意设置。点击
OK
完成。
B.
选择
Window->Prefernces->Raiils->Configuration
,设置
Rails Path
为
C:/ruby/rails,
设置
Rake Path
为
C:/ruby/rake
。点击
Apply->OK
。具体的路径设置根据你的
ruby
安装路径来调整。
至此,
Rails WEB
开发环境就搭建完毕。可以顺利使用了。
!