GitXplorerGitXplorer
h

reditor

public
40 stars
5 forks
1 issues

Commits

List of commits on branch master.
Unverified
0b3744810995101e4e511107f583f873e309712e

Version 0.4.1

hhibariya committed 9 years ago
Unverified
369585f6b5c4d365b103074e92ff01cb3abfa6c5

Merge pull request #9 from hibariya/interactive-filter

hhibariya committed 9 years ago
Unverified
87c44473bfeaddaa122d556e37bbeb1446cd37eb

Use pepin-0.1.1

hhibariya committed 9 years ago
Unverified
9deafe22f2ac50d4f7429ee1252841fb92f48ac4

Support 2.1.0 or later

hhibariya committed 9 years ago
Unverified
4bb8eddeb9c38e7017f0d7665c25f9c1654e4fc2

Use interactive filter

hhibariya committed 9 years ago
Unverified
ba6981f82ba0f792bccd910bde1a9015fe25f17f

Ignore invalid LOAD_PATH

hhibariya committed 9 years ago

README

The README file for this repository.

Reditor Build Status

Reditor provides reditor command.

This command detect and open a library from $LOAD_PATH or rubygems.

reditor requires the $EDITOR variable.

Installation

  $ gem install reditor

Usage

Open a Standard Library (pure ruby only)

  $ reditor set

Open a gem

  $ reditor railties

Open a library by $SHELL

  $ reditor sh railties

Open a gem on bundler project

Reditor opens a gem that specified in Gemfile by default. If you want to avoid it, pass the --global option.

$ gem list rack

*** LOCAL GEMS ***

rack (1.5.2, 1.4.5)

$ bundle list rack
/(snip)/rack-1.4.5

$ reditor rack          # open rack-1.4.5
$ reditor rack --global # open rack-1.5.2

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