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

Rubycritic

by pedrocarmona MacLinux ALL

Sublime plugin to make a rubycritic assessment of current file, and automatically open it in the browser

Details

Installs

  • Total 3K
  • Win 0
  • Mac 2K
  • Linux 1K
Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 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
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 0
Mac 0 0 0 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 0 1 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 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 1

Readme

Source
raw.​githubusercontent.​com

SublimeRubycritic

Installation

Before using this plugin, you must ensure that rubycritic is installed on your system. To install rubycritic, do the following:

  1. Install Ruby. Sugestion: rbenv.

  2. Install rubycritic by typing the following in a terminal:

[sudo] gem install rubycritic
  1. If you are using rbenv, ensure that they are loaded in your shell’s correct startup file.
rbenv rehash
  1. test in sublime console (View > show console)
import os
  os.system("rubycritic")
  1. If is result 0, then there is no need to do the next steps.

  2. If result is 32512, then sublime cannot find rubycritic. Please do these instructions in you command line:

which rubycritic
  1. copy the output and do this
ln -s [OUTPUT] /usr/local/bin/rubycritic
  # rbenv example: ln -s /Users/YOURUSERNAME/.rbenv/shims/rubycritic /usr/local/bin/rubycritic

Contributing

If you would like to contribute enhancements or fixes, please do the following:

  1. Fork the plugin repository.
  2. Hack on a separate topic branch created from the latest master.
  3. Commit and push the topic branch.
  4. Make a pull request.
  5. Be patient. ;-)