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

Rake

by SublimeText ALL

Sublime Text 2 plugin for Ruby Rake

Details

  • 2014.11.07.09.47.33
  • github.​com
  • github.​com
  • 9 years ago
  • 31 minutes ago
  • 12 years ago

Installs

  • Total 6K
  • Win 1K
  • Mac 3K
  • Linux 1K
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 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
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 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 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 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 0 0

Readme

Source
raw.​githubusercontent.​com

Description

Rake is a simple ruby build program with capabilities similar to make. This package adds support to Sublime Text for developing Ceedling applications.

Rake has the following features:

  • Rakefiles (rake‘s version of Makefiles) are completely defined in standard Ruby syntax. No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)
  • Users can specify tasks with prerequisites.
  • Rake supports rule patterns to synthesize implicit tasks.
  • Flexible FileLists that act like arrays but know about manipulating file names and paths.
  • A library of prepackaged tasks to make building rakefiles easier.

Package Installation

Preferred: Using Package Control, select Package Control: Install in the Command Palette, search for Rake, and hit Enter.

To clone manually, bring up a command line in the Packages/ folder of your Sublime user folder (locate it using Preferences -> Browse Packages...), and execute the following:

git clone git://github.com/SublimeText/Rake.git

When you launch Sublime Text, it will pick up the contents of this package so that you can consume the goodness that it provides.

Features

  • Adds a Rake.sublime-build that will simply execute 'rake' with no arguments (default task)
  • The rake.py Sublime Text plugin adds a rake Sublime Text command that can be used in any custom keybindings and/or menu items.
    • Automatically calls the proper flavor of rake per OS (e.g. rake on OSX and Linux; rake.bat on Windows)
    • The rake command is based off of the exec command, but takes different parameters
      • e.g. the "cmd" parameter is replaced by:
        • "prefix" - text/parameters to be tacked on prior to rake on the command line (e.g. ["bundle", "exec"])
        • "tasks" - array of tasks to be executed in order (e.g. [“clobber”, “test:all”])
        • "options" - array of extra parameters to be appended after the tasks (e.g ["--trace"])
      • Most of the other parameters supported by the 'exec' command are supported as well:
        • "file_regex"
        • "line_regex"
        • "working_dir"
        • "env"

Planned Features

  • Dynamically create entries in the Command Pallette for described rake tasks

Example Usage

Key Binding:

{ "keys": ["f4"], "command": "rake", "args": {"tasks": ["clobber", test:all"] } }

Result: (pressing F4 will execute the following):

rake clobber test:all