rubymine

What do you think of "RubyMine".

Jetbrains has just released a "public preview" of a Ruby IDE called RubyMine The roadmap follows: Nov 1 - Public Preview Release Nov 10 - EAP Opens Q1 2009 - RubyMine 1.0 Release May 28 '09 - RubyMine 1.1 Released Oct '09 - RubyMine 2.0 Beta I don't have much Ruby experience myself, but coming from the creators of IntelliJ IDEA...

How to disable creating an ‘.idea’ folder in Rubymine?

Hi. How to disable creating an '.idea' folder in Rubymine? It creates that folder after opening every single file and if I delete the folder, works just the same as if I don't. TIA ...

Does RubyMine 2.0 earn it's $99 as a Rails IDE?

I've seen a lot of blogs talk about RubyMine lately, as a best of breed Rails IDE. Currently I am using NetBeans IDE for my Ruby and Rails stuff, but I was wondering if anyone here would personally recommend this IDE, and reasons why I should fork out $99 for it!? ...

Uninitialized constant error using Ruby in RubyMine

Has anyone used RubyMine who could help me out? I am new to RubyMine, and when I create my first project and add a few classes and wire them together for a simple meaningless application I am getting this error: "uninitialized constant RubyApp (NameError)" But when I take all the classes and put them in one file then run it, it runs fi...

How do I do an initial push to a remote repository with Git?

I've read through countless tutorials and I keep coming up short. Here's what I've got: -- I'm running RubyMine on my Windows desktop -- I've installed Git on my WebFaction hosting account per their instructions -- Git appears to be working fine on both machines Here's what I'm doing: 1. On server:          a. mkdir project          b...

Which RubyMine generated files should I commit?

RubyMine generates some files in the .idea directory. In one of my projects I see: *project_name*.iml encodings.xml misc.xml modules.xml vcs.xml workspace.xml Which should I commit to the version control system and which shouldn't? ...

Getting JRuby to work in RubyMine

I setup the proper SDK because all my ruby code will compile but RubyMine complains that it can't find the any of my java classes? Is this a flaw or is there a way to get it to recognizewhere the classes are? Here is my code, I have underlined all the things its complaining about require 'java' include_class 'java.awt.event.ActionList...

RubyMine Folder Tree doesn't refresh

Hi Using RubyMine 2.0.2 for the first time today, on Mac OSX Leopard. If I create files in the filesystem (with, say, script/generate) those new files do not appear in rubymine. I have had limited success with restarting the program, in that the files in the db/ folder are added and removed, but unfortunately new folders in the views ...

Change default encoding for RubyMine?

Is it possible to change the default encoding for RubyMine to be UTF-8 instead of MacRoman or ASCII? ...

Ruby Debug IDE error : ruby-debug-ide-0.4.9/lib/ruby-debug-ide.rb:109:in `debug_load'

I hope someone can assist me. I have RubyMine 2.0.2 installed on Windows 7 32 bit computer. Since a week ago (I presume it must have been after I have update some gems) I cant seem to debug form the IDE. I am trying to debug a rake task which I could before. Running the rake task normally works perfect, just debug doesnt. Its not just li...

How do I jump to a method in RubyMine?

In Visual Studio, the editor has a drop-down list of functions in the current class; clicking on one will take me to the top of that function. Is there a way to get a similar behaviour from RubyMine? ...

Recover list of tests in test runner in RubyMine

Somehow the list of tests on the left pane of the test runner in RubyMine went away. Any ideas how to re-activate it? Thanks ...

Ruby-on-rails + Postgres: configuration issue

Hello guys, I'm having some troubles after installing in Windows 7 ruby 1.8.6, rails 2.3.8, some basic gems(also ruby-postgres) and the IDE Rubymine from Jetbrains. So, after creating a simple project with Rubymine(default PostgresSQL configuration in database.yml), I run it in localhost:3000 but it seems not be recognizing nothing lik...

RubyMine on Mac, Rails environment on Ubuntu

I have installed RubyMine on Mac but my development environment for Ruby and Rails is on an Ubuntu VPS. When I run IRB in RubyMine, I assume it is using my Mac environment's IRB? Cause I have installed rvm, bundler, gems etc in my Ubuntu VPS. Is it possible to create an application in my Ubuntu VPS and use that environment rather than...

Migration issue in Ruby-on-rails

Hey guys, when I first begin a rails project, the model user was designed and created. After all the migration part, it successful created the table "users" at postgres. Well, then after doing some changes during the project, I realized that was missing an attribute/new column at the table. So what I did was delete the table users from ...

How to get the quickfix menu in RubyMine?

According to http://blogs.jetbrains.com/ruby/2009/08/whats-mining-rails-i18n-support/ there should be a quick fix menu that allows me to create translation keys. It seems to be related to the light bulb but in the latest RubyMine (RM-96.886) I don't seem to get the little lightbulb. Any ideas how to get to that menu? ...

If I have IDEA, do I need rubymine for ruby dev or will it do both?

Does IDEA support all the features of rubymine, or is rubymine more refined for rails and IDEA doesn't have all the rubymine features? ...

GIT / RubyMine (Leopard) - can't pull but I can commit and push

Hello, Ive got weird problem My system is Snow Leopard (10.6.4) - I can't make pull from my RubyMine but I can make commit and push. The best thing is that when I run terminal and type "git pull" it works fine. In ruby mine console there are some errors: /usr/local/git/libexec/git-core/git-sh-setup: line 71: basename: command not foun...

Find (and kill) process locking port 3000 on Mac.

How do I find processes that listens to/uses my tcp ports? I'm on mac os x. (update: 10.5 leopard) I'm having trouble with RubyMine losing control of my rails app and getting detached from the process, locking port 3000. I can't find it using ps -ef... How do I find the stupid thing, kill it, brutally... ? Address already in use - bin...

Tests run from command line but not in RubyMine - No tests were found

I am trying to use RubyMine to run the tests in an existing project. Unfortunately, whenever I attempt to do so I receive the message that No tests were found and the bottom of test console output I see the message: Errors running test:units and test:functionals! Empty test suite. Process finished with exit code 1 I have tried runni...