最近一直在用InstantRails-1.7做些Rails的小例子,但InstantRails-1.7并不能算得上真正意义上的Rails IDE,开发效率不高,所以我尝试去使用更好的开发工具。我选择了Aptana+RadRails,将其以插件的形式集成到Eclipes3.2中,没选择使用单独的Aptana IDE。(参考:
http://www.radrails.org/download_rails_rdt.php)
参考了网上的一些相关文章,我搭建起了开发环境。具体做法如下:
(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,建立新的远程安装路径:
-
Aptana
Name:Aptana (根据个人喜好取名) URL:
http://update.aptana.com/install/3.2/
-
RadRails
Name:Rails Support URL:
http://update.aptana.com/install/rails/3.2/
点击
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
开发环境就搭建完毕。可以顺利使用了。
!