====================
Contact: braindamageinc@gmail.com
##Summary Makes HTTP requests using the selected text as URL + headers. Usefull for testing REST APIs from Sublime Text 2 editor.
##Usage Select the text that represents an URL. Examples of requests:
http://www.google.com/search?q=test
GET http://www.google.com/search?q=test
www.google.com/search?q=test
If you need to add extra headers just add them below the URL line, one on each line:
www.google.com/search?q=test
Accept: text/plain
Cookie : SOME_COOKIE
Use the right-click context menu command Http Requester or the keyboard shortcut CTRL + ALT + R ( COMMAND + ALT + R on Mac OS X ).
Only HTTP GET is supported at the moment. Planning to extend with POST/UPDATE/DELETE soon.
Using the Sublime Text 2 Package Control plugin (http://wbond.net/sublime_packages/package_control) press CTRL + SHIFT + P and find Package Control: Install Package and press Enter. Find this plugin in the list by name Http Requester.
Or git clone to your Sublime Text 2 packages folder directly (usually located at /Sublime Text 2/Packages/).