Sha256: 8834584e86ddf36f382f43a21623c82a789c629cc8ddbd5f4616156c6e611a47

Contents?: true

Size: 915 Bytes

Versions: 2

Compression:

Stored size: 915 Bytes

Contents

# SourcePosition

Editor friendly source location

## Installation

Ruby 1.8 user, please Install [ruby18_source_location] first.

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

```ruby
# file: /foo/bar.rb

class Dummy
  def foobar
    puts '42'
  end
end
```

```ruby
Dummy.method(:foobar).source_position
```

should ouputs something like this:

```ruby
"/foo/bar.rb:4"
```

So, in iTerm, you can press `⌘-Click` to open this file and navigate to 
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

[ruby18_source_location]: https://github.com/ConradIrwin/ruby18_source_location

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
source_position-0.0.3 README.md
source_position-0.0.2 README.md