Questions tagged [rubymine]

RubyMine is a commercial cross-platform IDE for Ruby and Ruby on Rails development, created and provided by JetBrains.

RubyMine is a commercial cross-platform IDE for Ruby and Ruby and Rails development, created and provided by JetBrains.

Main features include:

  • Customizable editor with support for Ruby and Rails, JavaScript and CoffeeScript, ERB, Slim and HAML, CSS, Sass and Less, and more.

  • On-the-fly code analysis with quick-fixes and code autocompletion for Ruby and Rails.

  • Various code navigation options including the ability to navigate to the methods defined in the app, as well as those of Ruby, Rails, and gems.

  • Finding usages, extracting and renaming methods and variables throughout the project, and other refactoring options.

  • Visual testing suite and debugger for Ruby and JavaScript.

  • Git integration and support for other version control systems.

  • Support for RVM, Rbenv, RSpec, Cucumber, RuboCop, Vagrant, Puppet, Docker, and other technologies, tools, and frameworks.

Links:

1257 questions
0
votes
1 answer

RubyMine keyboard keymap not working

I'm using RubyMine 4.0.1, I'm try to use keymap shortcuts like ctrl+C, ctrl+V, ctrl+shift+N (search file) and it's not working... It's stop working after I reset the Ubuntu machine.
Tini
  • 769
  • 1
  • 6
  • 7
0
votes
1 answer

PG::Error FATAL: password authentication failed for user

I am using Windows. Just created a new project in RubyMine. Installed Postgresql for Windows, created a password. When i try to start the project it shows me: PG::Error FATAL: password authentication failed for user. Could you tell me what i am…
Eugene
  • 365
  • 6
  • 21
0
votes
1 answer

Ruby on Rails RubyMine setup for win 7

I am trying to find a tutorial or a document or what ever which will show all the real steps with details how to setup my win 7 pc in order to debug - deploy a rails app through rubymine. I have found only spare pieces of the puzzle which i don't…
kostas ch.
  • 1,960
  • 1
  • 17
  • 30
0
votes
1 answer

how to set jcode library for rubymine debugger

I'm trying to debug arabic text in rubymine. A quick search reveals that I need to set $KCODE env variable to 'U' and require the jcode library.. that works fine for me on irb, but I can't figure out how to do it for the rubymine debugger. Setting…
abbood
  • 23,101
  • 16
  • 132
  • 246
0
votes
1 answer

Starting debugger in RubyMine gives internal error

When starting ruby debugger in RubyMine, I'm getting next error: runnerw.exe E:\jruby-1.6.7.2\bin\jruby.exe --1.9 -X+O -J-Djruby.reflection=true -J-Djruby.compile.mode=OFF -J-Djruby.debug.fullTrace=true -e…
Lieven Cardoen
  • 25,140
  • 52
  • 153
  • 244
0
votes
0 answers

RubyMine lost debugger after step several line?

I'm developing a Rails project using RubyMine 4.5.4. After few lines of stopping over the code, RubyMine seems lost connect to the debugger. Step Into,Step over buttons went disabled and I can not access localhost:3000. Is that a bug of RubyMine or…
aztack
  • 4,376
  • 5
  • 32
  • 50
0
votes
0 answers

running a command with ruby mine

I would like to execute the following command in rubymine ide export RACK_ENV=development APP_ROLES=batch; jruby -J-Xmx2056m -S trinidad -e development I am not able to get the ruby run configuration without a ruby script. I tried running it as…
Gaurav Shah
  • 5,223
  • 7
  • 43
  • 71
0
votes
2 answers

Issue with Mysql2, RoR, and Windows 8 x64

Okay so I've been having a heck of a time getting my IDE environment setup for Ruby and RoR. Every issue so far I've been able to solve except one so I humbly ask the mighty stackoverflow for guidance. MY RubyMine install is having trouble…
0
votes
0 answers

rails cannot perform migrations and modify the database

when I tried to access some of my SQLite db records through RubyMine IDE(5.4.1/4.0.3), I got the following error stack trace: com.intellij.execution.ExecutionException: Exception in thread "main" java.lang.ClassNotFoundException: org.sqlite.JDBC …
user2316198
0
votes
1 answer

Can I debug dynamically added Ruby method?

I want to store brief snippets of code in the database (following a standard signature) and "inject" them at runtime. One way would be using eval(my_code). Is there some way to debug the injected code using breakpoints, etc? (I'm using Rubymine) I'm…
Steve Macdonald
  • 1,745
  • 2
  • 20
  • 34
0
votes
1 answer

Shortcut for Rubymine fullscreen mode on Mac OS X

You can enter full-screen mode in Rubymine by navigating to MENU > VIEW > ENTER FULL SCREEN. Once in full-screen mode, moving your mouse to the top of the screen triggers the menu bar to dropdown, where you can once again navigate to MENU > VIEW >…
Flak DiNenno
  • 2,193
  • 4
  • 30
  • 57
0
votes
2 answers

Ruby on rails app debug and develop

I have been in Ruby on Rails for a while. Now I clone a very nice project from GitHub and i want to debug it with RubyMines. Can someone please sugest me how do i proceed further? Do I start with Controllers? or Models? or Route.rb file? I want to…
Meambani
  • 13
  • 3
0
votes
2 answers

can't run rails server (activesupport error)

in my application, in the last few days, i'm unable to run the rails server/rails s or even bundle exec rails server command any more. it was running like a charm before. i tried to revert the changes using git, but no luck, i tried all the possible…
Mawaheb
  • 822
  • 10
  • 21
0
votes
1 answer

RubyMine 5.0 requires a new library

I want to use Watir in my Ruby program, like this require 'watir' ie = Watir::IE.new ie.goto 'www.google.com' It works well but there was no autocompletion when I input ' ie.' . What should I do to solve this?
John
  • 17
  • 1
0
votes
2 answers

possible undefined local variable for loop condition

Rubymine flags the variable found as potentially undefined. I thought the answer would be to move the variable found outside the begin but I then go into a tight loop that never exits. I am sure this is a block scoping issue but lack the ruby…
krystan honour
  • 6,523
  • 3
  • 36
  • 63