0.0
No commit activity in last 3 years
No release in over 3 years
Editor friendly source location
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
 Project Readme

SourcePosition

Editor friendly source location

Build Status Dependency Status Gem Version Code Climate endorse

Tested on 1.8.7, 1.9.3, 2.0.0, ree, rbx-18mode, rbx-19mode

If you are using 1.8.7 or ree, you have to install ruby18_source_location.

Installation

Add this line to your application's Gemfile:

gem 'source_position'

And then execute:

$ bundle

Or install it yourself as:

$ gem install source_position

Usage

# file: /foo/bar.rb

class Dummy
  def foobar
    puts '42'
  end
end
Dummy.method(:foobar).source_position
# => "/foo/bar.rb:4"

So, in iTerm, you can use ⌘-Click to open this file on line 4.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request