Index: bower_components/sugar/README.md |
diff --git a/bower_components/sugar/README.md b/bower_components/sugar/README.md |
deleted file mode 100644 |
index 3d00c42275f51c5470600890c447af8a6a440a54..0000000000000000000000000000000000000000 |
--- a/bower_components/sugar/README.md |
+++ /dev/null |
@@ -1,97 +0,0 @@ |
-# Sugar |
- |
-[](http://travis-ci.org/andrewplummer/Sugar) |
- |
-A Javascript library for working with native objects. |
-http://sugarjs.com/ |
- |
- |
-## Upgrading |
- |
-If you are upgrading from an older version, please have a look at [`CAUTION.md`](https://github.com/andrewplummer/Sugar/blob/master/CAUTION.md) which is a vetted changelog |
-that details the severity of what has changed, and (sometimes) strategies for migrating. |
-Going through this before you upgrade can make the process a lot less painful! |
-Also please refer there for notes about a patch that applies to versions prior to v1.3.9. |
- |
- |
-## Edge Build |
- |
-Public stable releases will be made available on the site and also exist in `release/`. |
-Any push made to `master` branch *should* have its unit tests passing, although maybe not |
-in all browsing environments (IE, etc) to ensure that it is stable, at least to a certain degree. |
- |
- |
-## Custom Builds |
- |
-Sugar now allows custom builds that let you opt in or out packages. This can be done [here](http://sugarjs.com/customize). |
-Custom builds can also be created with `script/build_custom.rb`. With ruby installed, simply call: |
- |
-``` |
-ruby script/build_custom.rb core array string |
-``` |
- |
-listing the packages you want to include. The advantage of using this |
-script is that it will perform all the minification on the fly, providing more fine-grained control by allowing you to |
-manipulate the source code in `lib/` before building. If you want to remove specific methods from a package, you can do it this way. |
-Be careful about removing dependencies, however, especially methods in `core.js`, the extending methods of which are required. |
- |
- |
-## Unit Tests Node |
- |
-Use the `npm test` command to run unit tests. |
- |
- |
-## Date Localizations |
- |
-Sugar has the following localizations available: |
- |
-- English (en) |
-- French (fr) |
-- German (de) |
-- Spanish (es) |
-- Italian (it) |
-- Russian (ru) |
-- Finnish (fi) |
-- Swedish (sv) |
-- Danish (da) |
-- Dutch (nl) |
-- Polish (pl) |
-- Portuguese (pt) |
-- Korean (ko) |
-- Japanese (ja) |
-- Simplified Chinese (zh-CN) |
-- Traditional Chinese (zh-TW) |
- |
- |
-These files can be added separately or built into the main package on the [customize page](http://sugarjs.com/customize). |
-In addition to these major locales, custom locales can be added using: |
- |
-``` |
-Date.addLocale(LOCALE_CODE, LOCALIZATION_OBJECT) |
-``` |
- |
-Documentation for this available [here](http://sugarjs.com/dates). Also refer to `lib/locales` for examples of what kind of data and formats are required in localization objects. All localizations, including those not found in the main package will be kept here. |
- |
- |
- |
-## Timezones |
- |
-Dealing with timezones in Javascript can be tricky. Although timezones are outside the scope of Sugar, it does provide a hook that can allow timezone shifted dates to be used internally in place of normal ones. See [the date reference](http://sugarjs.com/dates#timezones) for more. |
- |
- |
-## Contributing Locales |
- |
-If you do add a custom format for your locale, please consider forking and adding it to the repo! This especially includes the addition of new locales, but also new formats or tweaks to existing locales. Not everything can be added to the main package, but I would like to have as many languages/formats as possible available. When adding a locale contribution, the most important thing is to add unit tests that assert the correct format. These unit tests are found at `test/environments/sugar/date_LOCALE.js`. Simply add or adjust the formats for the locale (the more tests, the better!) and issue me a pull request -- I will update the code to add these locales/formats. Have a look at other unit tests files for an example of the unit testing format. |
- |
- |
-## Contributing Lib Comparisons |
- |
-Lib comparisons to various other libraries can be seen at http://sugarjs.com/libs. This is one of the areas where contributions are most welcome, as I don't have extensive knowledge of many different libraries, and there is much to cover. To contribute simply find or create the appropriate lib name in `docs/libs`, and follow the format provided. This will be an ongoing process, and I will push changes here out to the site every so often. |
- |
- |
-## Other Contributions |
- |
-For other contributions, please add well formed unit tests in the Sugar environment at `test/environments/sugar/MODULE.js`. Unit tests can be run directly in the browser from `test/default.html`, and should all be passing in all major browsers (Webkit,Mozilla,Opera, and IE6+). Node.js unit tests should also be passing and can be run in the console with `npm test`. |
- |
-Also note that the source code is in the `lib` directory, and `release` is automatically built, so there is no need to changes files there. |
- |