ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Goto​Ruby​Gem

by ZainIftikhar7vals MacLinux ALL

Quickly access the code of any installed gem.

Details

Installs

  • Total 66
  • Win 0
  • Mac 38
  • Linux 28
Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15
Windows 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 0 1 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
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0

Readme

Source
raw.​githubusercontent.​com

Goto Ruby Gem 0.3.0

This plugin is designed for Ruby projects and allows you to quickly access the code of any installed gem. It opens the gem's source code in a new Sublime Text window for easy inspection.

gif

Installation

  1. Open Sublime Text.
  2. Press Ctrl + Shift + P (Linux) or Cmd + Shift + P (Mac) to open the Command Palette.
  3. Type Install Package and press Enter.
  4. Type “GotoRubyGem” and press Enter to install.

How to Use

  1. Press Ctrl + Shift + P (Linux) or Cmd + Shift + P (Mac) in Sublime Text.
  2. Type “Goto Ruby Gem” and press enter.
  3. It will display a list of all installed gems.
  4. Select a gem from the list, and the plugin will open its source code in a new window.

Specifying Custom Directories (optional)

For specifying custom directories from which gems should be searched:

Store configurations directly in Sublime Text's settings: Open Preferences > Package Settings > GotoRubyGem and refer to Settings - Default for an example. You can customize GotoRubyGem using the following configurations:

  • use_custom_gems_directories:
    • Controls whether to use custom directories for gem searching.
    • Default: false
    • Options:
    • true: Enables searching in custom gem directories specified in custom_gems_directories.
    • false: Uses the default gem directory for searching.
  • custom_gems_directories:
    • A list of absolute paths where gems should be searched.
    • Usage:
    • Specify paths only if use_custom_gems_directories is set to true.
    • If empty and use_custom_gems_directories is true, no gems will be searched.

Example Configuration:

Now Gems will only be searched inside /home/vals/.rvm/rubies/ruby-3.1.4/lib/ruby/gems/3.1.0/gems

{
    "use_custom_gems_directories": true,
    "custom_gems_directories": [
        "/home/vals/.rvm/rubies/ruby-3.1.4/lib/ruby/gems/3.1.0/gems"
    ]
  }

limitations

  • Experimental support for Sublime Text for Linux/Mac with RVM/rbenv.

Enjoy exploring gem code easily with Goto Ruby Gem!

Feedback

Your feedback and suggestions are valuable! Feel free to open issues or contribute to the project.