0.23
A long-lived project that still receives updates
fast, accurate ctags generator for ruby source code using Ripper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

ripper-tags

fast, accurate ctags generator for ruby source code using Ripper

usage (command-line)

Typical usage:

ripper-tags -R --exclude=vendor

This parses all *.rb files in the current project, excluding ones in vendor/ directory, and saves tags in Vim format to a file named ./tags.

To see all available options:

ripper-tags --help

usage (api)

require 'ripper-tags/parser'
tags = RipperTags::Parser.extract("def abc() end", "mycode.rb")