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
-1
votes
2 answers

Do I need TortoiseGit with RubyMine?

I'm fairly new to RubyMine, and completely new to Git (or any VCS). I want to experiment with Git on my own laptop. Can I do everything from the RM VCS menu? Or do I need to use TortoiseGit as well?
OldGrantonian
  • 597
  • 1
  • 8
  • 23
-1
votes
1 answer

Why is the 'where' method making an unnecessary database call?

I am running Rails 3.2.10 on Ruby 1.9.3, use PostgreSQL as the db and RubyMine to debug my code. While debugging, I noticed that, this line: @monkeys = Monkey.where(user_id: 2) Makes 2 database calls and generates the following logs: Monkey Load…
boomslang
  • 118
  • 1
  • 1
  • 6
-2
votes
1 answer

When executing a run configuration, JetBrains software does not seem to be using the Ruby version I specified

I am trying to run a "Run configuration". However in the run window, I get a message: Your Ruby version is 2.2.1, but your Gemfile specified 2.5.2 So I go to the Terminal tab and I do rvm use 2.5.2. That works fine. Then I try running the…
CodyBugstein
  • 21,984
  • 61
  • 207
  • 363
-2
votes
1 answer

How To Check For 4 In Row In A Multidimensional Array (Ruby)

double_array = [ ["0", "0", "0", "0", "0"], ["0", "0", "0", "0", "0"], ["0", "0", "0", "0", "0"], ["0", "0", "0", "0", "0"], ["0", "0", "0", "0", "0"], ] Let's say the digits in this array change like so: double_array = [ ["1", "0",…
-2
votes
1 answer

Localhost:3000 error when server is running using RubyMine

Whenever I start the server and go to localhost:3000, this error shows up. I've already allowed the firewall settings in my mac, but this error just keeps showing up. This same thing happens when I tried installing and running on my friend's laptop.…
-2
votes
1 answer

Error with rails server

yahya@pc ~/RubymineProjects/depot $ rails server /home/yahya/.rvm/gems/ruby-2.2.3/gems/activesupport-3.1.3/lib/active_support/values/time_zone.rb:268: warning: circular argument reference -…
Yahyaotaif
  • 1,943
  • 1
  • 15
  • 17
-2
votes
1 answer

Ruby Wrapper Class results in NameError uninitialized constant

I'm trying to model some UI elements. I've created a series of classes in /app/models/wrappers/* For this post i'm going to focus on a class called InputTextVO I have: class InputTextVO ... end /app/models/wrappers/InputTextVO.rb When I try and…
Jack Murphy
  • 2,952
  • 1
  • 30
  • 49
-2
votes
1 answer

Rubymine not recognizing installed gems

My Ruby project is not recognizing the gem I just installed in Terminal. The gem is also not showing up in external libraries.
Greg
  • 305
  • 1
  • 4
  • 11
-3
votes
2 answers

Remote collaboration for my RoR project

I have a Ruby on Rails project in my local machine and I use the RubyMine IDE to change the related source code. Recently, I found a (remote) collaborator for my project, and I would like to share my code with him so that we can work on it. However,…
-3
votes
1 answer

New to Rails and programming

Running rails on windows 10 (finally got it to load up), new to the programming world. Building my 1st web app. Should I be running rails thru an IDE (cloud 9, RubyMine) or some other virtual machine?? Any insight would be appreciated
-3
votes
2 answers

How do I setup Selenium webdriver on RubyMine?

I have to learn how to user Selenium Webdriver in RubyMine I have no idea how to install Selenium gem. I have downloaded Selenium gem, but what is next? how do I install or bind to my RubyMine IDE? I used to work a lot with Java, Ruby and RubyMine…
Nodir Nasirov
  • 1,488
  • 3
  • 26
  • 44
-4
votes
1 answer

How do I interpret this debugger output?

Can anyone tell me how to get nth value, lets say 3rd val (which is 1) in children[0] in the following debugger output? I tried children[0][2] but didn't work. children = Array (101 elements) [0] = Hash (1 element) bitstring => Array (100…
stack me
  • 25
  • 4
1 2 3
83
84