RubyMine
A full-stack IDE specialized for Ruby and Rails development, equipped with all features for writing beautiful code quickly
Ruby-specific shortcuts that dramatically streamline Ruby development by leveraging Rails, Rake, RHTML and other Ruby/Rails-specific features
Alt+Shift+N
Go to Rails Model/View/Controller
Navigates to a Rails model, view, or controller.
💡 Hint: Alt + Shift + N = Navigate Rails
🎯 Used for instant navigation between models, views, and controllers within Rails applications
Alt+F2
Preview Rails View
Previews a Rails view in the browser.
💡 Hint: Alt + F2 = Preview
🎯 Used for quickly checking UI by previewing Rails views in the browser
Ctrl+Shift+.
Insert <%= %> in RHTML
Inserts an <%= %> tag into an RHTML file.
💡 Hint: Ctrl + Shift + . = % tag
🎯 Used for efficiently adding ERB tags to insert dynamic content in RHTML files
Ctrl+Alt+G
Run Rails Generator
Runs a Rails generator.
💡 Hint: Ctrl + Alt + G = Generator
🎯 Used for automatically generating Rails code such as models, controllers, and migrations
Ctrl+R
Reload Rails Console
Reloads application source in the Rails console.
💡 Hint: Ctrl + R = Reload
🎯 Used for reflecting code changes in Rails console and testing with the latest state
Ctrl+Alt+R
Run Rake Task
Runs a Rake task.
💡 Hint: Ctrl + Alt + R = Rake
🎯 Used for executing Rake tasks like database migrations, test runs, and asset precompilation