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

Writing a HelloWorld with Modules and Classes

I am using RubyMine IDE so maybe this is because I don't know how to use it! but here is what I have: A module named MyFirstModule that has a method named say_hello module MyFirstModule def say_hello puts 'Hello' end end And also a class…
user1899082
0
votes
3 answers

Does RubyMine has a quick diff feature like Netbeans has?

I am wondering if I can turn on a quick diff feature in RubyMine. By default, in Netbeans, you see a green, blue or red bar on the left of the normal editor that shows what has been added/modified/deleted relative to the previous revision (Git or…
Benjamin Crouzier
  • 40,265
  • 44
  • 171
  • 236
0
votes
1 answer

Problems with Spork & Rspec in rubymine

Trying to use Rspec with Spork in RubyMine; Gemfile: gem 'spork', '~> 1.0rc' .rspec: --color --drb spec_helper.rb. $ spork rspec Using RSpec, Unknown -- Starting to fill pool... Wait until at least one slave is provided before running…
just so
  • 1,088
  • 2
  • 11
  • 23
0
votes
1 answer

Bad idea to alter external gem files in rails so I can use CSS in app?

Did some research on how to style the views of the devise gem, didn't really find much so added some html and a render partial to the external libray to assist with styleing and to continue to offer my users some links. I get this gut instinct that…
Matt
  • 559
  • 6
  • 15
  • 27
0
votes
1 answer

Project wide report in RubyMine for code style, spelling, etc?

In the RubyMine editor, it flags things like ruby style issues, possible spelling errors, etc. I am looking for a way in RubyMine to get a whole project wide report of these coding issues. Does such a thing exist within RubyMine (or something added…
Vince
  • 1,441
  • 1
  • 14
  • 19
0
votes
0 answers

Cant debug using RubyMine

When I start the debug for development I get this message: Connecting to database specified by database.yml then, nothing happen, I wait for long time, and nothing happen, although database setting is correct If I start the server with development…
simo
  • 23,342
  • 38
  • 121
  • 218
0
votes
1 answer

How can I see the compiled coffeescript in Rails 3.2.1?

I'm using RubyMine, and wondered if there was any way to see the Javascript that Coffeescript compiles to while I am developing (prior to the page load). It's not essential, I was more curious than anything else.
Mark Kadlec
  • 8,036
  • 17
  • 60
  • 96
0
votes
1 answer

Can RubyMine IDE recognize rspec tests if filename does not have _spec suffix?

Let me preface this by saying I am a newbie to Ruby. I am doing an extremely basic tutorial on Ruby in RubyMine, and as part of the tutorial, we create a class in a .rb Ruby file called thing.rb. In addition to the class, the tutorial has us put…
whistler
  • 876
  • 2
  • 15
  • 31
0
votes
2 answers

How to delete previously generated table in RubyMine

So this is probably pretty easy. I'm not finding anything in RubyMine documentation or Google. I previously generated a migration as: Proposal name:string date:date title:string text:text user:references After wanting to make a change I went…
Matt
  • 559
  • 6
  • 15
  • 27
0
votes
1 answer

Setup rubymine to execute commands over ssh

I'd like to setup a rails development environment where everything is running in a Ubuntu VM but I use windows 7 for display. Under ububtu (Which is a virtualbox VM) ruby rails environment (rvm, rails, rails webserver...) git Under Windows (native…
Benjamin Crouzier
  • 40,265
  • 44
  • 171
  • 236
0
votes
0 answers

Show which stack frames come from my source code (not from a gem)

I'd like to be able to look at a stack trace and see at a glance which frames come from my source code. Particularly when I'm running a Rake task from the command line. RubyMine, in its console window, highlights those stack frames which come from…
Ladlestein
  • 6,100
  • 2
  • 37
  • 49
0
votes
1 answer

ruby gem update error Enoent

I have Ruby installed with RubyInstaller on Windows. It was working before but now I can't update any gems and I keep getting errors referring to drive F: which doesn't exist on my machine, I don't know where is this coming from, I can't find any…
kabaros
  • 5,083
  • 2
  • 22
  • 35
0
votes
1 answer

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

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
Fluffy
  • 27,504
  • 41
  • 151
  • 234
0
votes
2 answers

Run failed Rspec which send message from Gmail, which works fine in RubyMine

I have some rspec tests in RubyMine, they works perfect, when I run them from RubyMine interface. But when I try to run same test from terminal, they fail. I use ruby-gmail gem to send mail trougth gmail using this construction: @gmail.deliver do …
ShockwaveNN
  • 2,227
  • 2
  • 29
  • 56
0
votes
1 answer

Why it got extremely slow?

I've been working on RoR apps using RubyMine in Ubuntu within a Virtual Machine in Windows 7 Well .. every thing went fine for a long time .. But newly, I've been noticing that editing any file would take very long time ( over 15 seconds ) Just…
simo
  • 23,342
  • 38
  • 121
  • 218