From 05199198d690228f2a030c0f007e23819a997f0b Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 22 Dec 2015 16:55:48 +0000 Subject: Import python-jsmin_2.0.9.orig.tar.gz --- README.rst | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 README.rst (limited to 'README.rst') diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..ade024a --- /dev/null +++ b/README.rst @@ -0,0 +1,67 @@ +===== +jsmin +===== + +JavaScript minifier. + +Usage +===== + +.. code:: python + + from jsmin import jsmin + with open('myfile.js') as js_file: + minified = jsmin(js_file.read()) + +You can run it as a commandline tool also:: + + python -m jsmin myfile.js + +Where to get it +=============== + +* install the package `from pypi `_ +* get the latest release `from the stable branch on bitbucket `_ +* get the development version `from the default branch on bitbucket `_ + +Contributing +============ + +`Issues `_ and `Pull requests `_ +will be gratefully received on Bitbucket. Pull requests on github are great too, but the issue tracker lives on +bitbucket. + +If possible, please make separate pull requests for tests and for code: tests will be committed on the stable branch +(which tracks the latest released version) while code will go to default by, erm, default. + +Unless you request otherwise, your Bitbucket identity will be added to the contributor's list below; if you prefer a +different name feel free to add it in your pull request instead. (If you prefer not to be mentioned you'll have to let +the maintainer know somehow.) + +Build/test status +================= + +Both default and stable branches are tested with Travis: https://travis-ci.org/tikitu/jsmin + +Stable (latest released version plus any new tests) is tested against CPython 2.6, 2.7, 3.2, and 3.3. +Currently: + +.. image:: https://travis-ci.org/tikitu/jsmin.png?branch=ghstable + +If stable is failing that means there's a new test that fails on *the latest released version on pypi*, with no fix yet +released. + +Default (development version, might be ahead of latest released version) is tested against CPython 2.6, 2.7, 3.2, and +3.3. Currently: + +.. image:: https://travis-ci.org/tikitu/jsmin.png?branch=master + +If default is failing don't use it, but as long as stable is passing the pypi release should be ok. + +Contributors (chronological commit order) +========================================= + +* `Dave St.Germain `_ (original author) +* `Hans weltar `_ +* `Tikitu de Jager `_ (current maintainer) +* https://bitbucket.org/rennat -- cgit v1.2.3