aptana3

Rails 4.0 project not starting through aptana studio 3

十年热恋 提交于 2019-11-29 02:35:28
Currently using the Aptana Studio 3 plugin for eclipse (3.4.2) and I'm unable to start my rails 4.0 project. Error: Ruby program /xx/xx/xx/xx/HelloRails/script/rails does not exist. It looks like Aptana is still looking for the rails executable in script, while it moved to bin in rails 4.0. Is there any workaround/fix available for this? Create a folder script in the root of the app and place rails file from the bin folder to the script folder then it will work. You might need to change the web-server options in the aptana setting also. I was having the same problem but this fix fixed it 来源:

Aptana 3 ruby debugger - Exception in DebugThread loop: undefined method `is_binary_data?'

十年热恋 提交于 2019-11-29 01:15:10
问题 I'm trying to debug simple ruby file in Aptana 3. class HelloWorld def initialize() end def greet() puts "hello world" end end h=HelloWorld.new h.greet breakpoint is set to h.greet after I started debug, debugger starts, but when it tries to initialize ruby class, debugger disconnect with message Fast Debugger (ruby-debug-ide 0.4.9) listens on :54749 Exception in DebugThread loop: undefined method `is_binary_data?' for "#<HelloWorld:0x85915fc>":String when I set breakpoint to h=HelloWorld.new

Cannot install Aptana Studio 3.6 on Windows

我是研究僧i 提交于 2019-11-27 11:11:47
I'd like to use Aptana Studio for Rails development under Windows. I currently have different dev tools & ide's up and running (like git/ruby/jdk) and I'd like to install Aptana Studio as well but I can't. After downloading and running installer, it starts properly and after I choose destination dir, it starts downloading prequisities. I have several problems with it: After a while, it tries to install node.js (well, I am not sure why, but let it be) and sometimes it installs it ok, but sometimes it just fails with no error, telling me only that aptana couldn't install prequisities. If by a

Rails 4.0 project not starting through aptana studio 3

心已入冬 提交于 2019-11-27 03:06:11
问题 Currently using the Aptana Studio 3 plugin for eclipse (3.4.2) and I'm unable to start my rails 4.0 project. Error: Ruby program /xx/xx/xx/xx/HelloRails/script/rails does not exist. It looks like Aptana is still looking for the rails executable in script, while it moved to bin in rails 4.0. Is there any workaround/fix available for this? 回答1: Create a folder script in the root of the app and place rails file from the bin folder to the script folder then it will work. You might need to change