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 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 Mar 4 Mar 3 Mar 2 Mar 1 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17
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
Mac 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0
Linux 0 0 0 0 0 0 0 1 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 0 0 0 0 0

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. ;-)