=== 1.1.6 / 2009-04-22 * Fixed typo in requires() * Added expect() === 1.1.5 / 2009-04-17 * Strengthened specs for cascading hooks * Fixed cascading hooks === 1.1.4 / 2009-04-17 * Added rhino and server template files * Added JSpec.hasXhr() * Added JSpec.xhr() * Added Ruby javascript testing server * Added support for options passed to run() * Added failuresOnly for Terminal formatter * Added terminal assertion graphs * Addec color() utility * Added main.puts() since we use print() as a utility * Added rhino support * Added fail() utility function * Added JSpec.Assertion * Added normalizeMatcherMessage() * Added normalizeMatcherBody() * Added have_classes [#19] * Added extend() utility * Added be_an_instance_of matcher * Added constructor checking support for throw_error matcher [#72] * Added file support for exception messages, making them much easier to debug * Added catching of exceptions throw within specs [#46] * Changed; executable aborts when template does not exist * Changed; matchers now normalized upon creation, accepts function, hash, or string. * Changed be() matcher to be strict [#57] * Changed error() to conditionally show line number when available * Renamed Jspec.addSuite to JSpec.describe and Suite#addSpec to Suite#it * Refactored be_a_TYPE_input matchers so that the deprication warning is logged only when calling the method * Fixed JSpec.requires() now works with latest version of JSpec.error() * Fixed error() now displays exceptions throw that do not respond to .message * Fixed commenting bug [#37] * Removed JSpec.main, now just using local main === 1.1.3 / 2009-04-14 * Removed /test used for the executable, causing gem to fail building === 1.1.2 / 2009-04-14 * Added `jspec update` sub-command [#63] === 1.1.1 / 2009-04-12 * Added gemspec === 1.1.0 / 2009-04-12 * jspec executable fully functional === 1.0.4 / 2009-04-09 * Added `jspec bind` * Added `jspec run` * Added `jspec init` * Added `jspec` executable * Added gemspec and manifest * Added command-line usage docs * Added custom matchers documentation * Removed double negation === 1.0.3 / 2009-04-08 * Added have_prop matcher, have_property is now strict [#56] === 1.0.2 / 2009-04-08 * Added be_selected, be_checked matchers * Added string support to each() each('some foo bar', ...) * Added have_ATTR matchers [#51] * Deprected be_a_TYPE_input matchers [#50] === 1.0.1 / 2009-04-07 * Added have_property matcher [#53] === 1.0.0 / 2009-04-06 * Added option() which gives the query string option precedence [#39] * Changed; Using JSpec.options.formatter not JSpec.formatter [#44] * Fixed Console formatter, now displays nested suites * Check out http://visionmedia.github.com/jspec for additional documentation! === 0.9.6 / 2009-04-03 * Added nesting support * Added printing of nested specs * Added assertion graphs to DOM formatter * Refactored preprocess() * Refactored most of the specs * Renamed preProcess() to preprocess() * Removed running of a single suite via ?suite= for now === 0.9.5 / 2009-04-02 * Added support for printing of function bodies and regexps [#27] * Added support for strings / regexp with should_throw_error [#26] * Added have_within matcher * Added have_at_most matcher * Added have_at_least matcher * Added have matcher [#24] === 0.9.4 / 2009-04-02 * Added be_a_TYPE_input matchers (be_a_checkbox_input, be_a_text_input, etc) * Added be_disabled matcher [#21] * Added be_enabled matcher [#20] * Refactored be_visible and be_hidden with $(elem).is() === 0.9.2 / 2009-04-02 * Added support for multi-arg failure messages [#2] * Better printing of jQuery objects [#15] === 0.9.1 / 2009-04-02 * Added support for dotted negation of assertions (foo.should.not.equal bar) * Added support for dot-style assertions [#17] (foo.should_not.equal bar) === 0.9.0 / 2009-04-01 * Added spec for strip() * Added strip() * Added any() util * Added new improved include matcher * Added have_many and have_one matchers * Added have_attr matcher [#14] * Added map() util * Added inject() util * Added escape() util * Added recursive array and object printing * Added DOM formatter option failuresOnly * Added support for running of a single squite via ?suite=... * Added query() util * Added last() util * Added be_within matcher, accepts a range literal * Added inclusive range literal n..n * Added row hover * Refactored range() * Refactored setMessage() * Refactored hash() * Changed; preprocessor passing array of args (multi-arg matcher support) * Changed jQuery to $ for internal usage === 0.8.0 / 2009-02-27 * Added a new style for the DOM formatter (not finished yet) === 0.7.0 / 2009-02-27 * Added Console formatter (anything implementing the console object. Firebug, Safari 4, etc) * Added JSpec.options.profile for optional profiling of specs * Added this. literal alternative (view readme) * Moved formatters into JSpec.formatters * Added error() util * Added savings raketask * Fixed parse error bug in Safari 4 === 0.6.3 / 2009-02-26 * Added minification for jspec.jquery.js when packaging before release * Added compression of css when packaging before release === 0.6.2 / 2009-02-26 * Changed; using $ in jspec.jquery.js for JSpec, take that jQuery ;) * Added addMatchers, print, hash, and each as 'utility functions' this allows JSpec to do each(...) internally instead of JSpec.each(...), while still preventing pollution of the global scope. === 0.6.1 / 2009-02-26 * Added closrue literal -{ (view README) * Added option to DOM formatter, now allows you to specify which element id to output to === 0.6.0 / 2009-02-24 * Added JSpec.hash * Added be_null matcher * Allow recursive composite matching using should_eql and should_not_eql For example [1, 2, [3]].should_eql([1, 2, [3]]) is true, works with object 'hashes' as well. === 0.5.1 / 2009-02-24 * Damn auto-release messed up === 0.5.0 / 2009-02-24 * Added async support for jQuery * Added JSpec.requires for dependencies * Added JSpec.throw * Added JSpec.runSpec * Refactored jspec.jquery.js * Fixed evalBody exceptions, previously was not showing exception message * Fixed bug of JSpec interpreting // in a string such as http:// to be a comment. === 0.4.1 / 2009-02-22 * Added elements() alias of element() * Added support for string passed to runSuite; runSuite('Matchers') is the same as runSuite(JSpec.suites['Matchers']). * Fixed some documentation === 0.4.0 / 2009-02-20 * Added comment literal (//) * Added pre-processor for convering matchers. For example 'test'.should_be_true becomes JSpec.match('test', 'should_be', 'true'), preventing pollution of core prototypes. === 0.3.2 / 2009-02-19 * Added TM bundle (go checkout my jspec.tmbundle repo on github) * Renamed have_length_of to have_length === 0.3.1 / 2009-02-19 * Added jquery js to package === 0.3.0 / 2009-02-19 * Added JSpec.match * Added options to report() which are passed to formatter * Added sandbox helpers (reg / jquery) * Added have_child and have_children * Added have_tag and have_tags * Changed exec to only load / eval file * Fixed parser token issue, was previously matching things like end() as literal end === 0.2.3 / 2009-02-18 * Changed test dir to spec * Changed test.js to core.spec.js === 0.2.2 / 2009-02-18 * Added contexts === 0.2.0 / 2009-02-18 * Added release rake task * Added package with minified alternative === 0.1.0 / 2009-02-18 * Added new sexy syntax (warning: you will have to re-write your specs) * Added pre-processor for optional matcher parens * Added several new matchers * Added matcher aliasing * Added simple matcher declarations * Added __END__ * Added yet-to-be-implemented specs * Added loading of suites via JSpec.load === 0.0.4 / 2008-11-03 * Added ability to pass only a description to it(), meaning not yet implemented === 0.0.3 / 2008-10-28 * Added should_fail * Added should_match * Added should_not_match * Added should_be and should_not_be === 0.0.2 / 2008-10-28 * Fixed typo in documentation for pointing to the master repo === 0.0.1 / 2008-10-28 * Initial release