8

I'd like to know which gedit plugins I could install to make programming for Ruby and Ruby on Rails easier?

vhbsouza
  • 448

2 Answers2

17

simply

sudo apt-add-repository ppa:ubuntu-on-rails/ppa
sudo apt-get update
sudo apt-get install gedit-gmate

and activate the plugins you want from options menu. It will activate sintax highlighting for erb files and many snippets for RoR developing.

7

Some more hints can be found here: https://rbjl.janlelis.com/22-rubybuntu-4-make-gedit-better-than-any-ide. Some commands for the "external commands" plugin (e.g. "run in irb") can be found in this post: https://rbjl.janlelis.com/23-gedit-external-tools-ruby-helpers-git-integration-and-more

2020 Update: As Crimbo noted, this might be outdated now...

J-_-L
  • 219