Skip to content

Commit

Permalink
* README, register and build script
Browse files Browse the repository at this point in the history
  • Loading branch information
cpojer committed Feb 3, 2011
1 parent 317ec94 commit a44b2a4
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
45 changes: 45 additions & 0 deletions README.md
@@ -0,0 +1,45 @@
MooTools PowerTools!
====================

PowerTools! for MooTools brings powerful low-level Plugins to speed up the development of JavaScript-heavy web applications.

Download & Demos
----------------

http://cpojer.net/PowerTools

Included Components
-------------------

* [Custom-Event](https://github.com/cpojer/mootools-custom-event)
* [Mobile](https://github.com/cpojer/mootools-mobile)
* [Class-Extras](https://github.com/cpojer/mootools-class-extras)
* [History](https://github.com/cpojer/mootools-history)
* [DynamicMatcher](https://github.com/cpojer/mootools-dynamic-matcher)
* [Form-Placeholder](https://github.com/cpojer/mootools-form-placeholder)
* [Form-AutoGrow](https://github.com/cpojer/mootools-form-autogrow)
* [Event-Stack](https://github.com/cpojer/event-stack)
* [Scroll-Loader](https://github.com/cpojer/scroll-loader)
* [Tree](https://github.com/cpojer/mootools-tree)
* [Interface](https://github.com/cpojer/mootools-interface)

Build
-----

Build via [Packager](http://github.com/kamicane/packager). Requires packager to be globally available.

./register
./build > powertools.js

This builds all of PowerTools! and puts the contents into 'powertools.js'. Alternatively you can also ./register all parts of PowerTools! and then build them manually. For more information on this see the repositories of each component.

Update all repositories

./update <remote>

Where <remote> is the name of the git remote, defaults to 'origin'.

Credits
-------

Thanks to [@timwienk](https://github.com/timwienk) for helping me with the bash scripts.
6 changes: 6 additions & 0 deletions build
@@ -0,0 +1,6 @@
# There is an issue with packager and packages with the same foldern name, use a trick with a different directory
mkdir tmp
cd tmp
packager build Custom-Event/* Mobile/* Class-Extras/* History/* Form-AutoGrow/* Form-Placeholder/* DynamicMatcher/* EventStack/* ScrollLoader/* Tree/* Interface/* +use-only Custom-Event Mobile Class-Extras History Form-AutoGrow Form-Placeholder DynamicMatcher EventStack ScrollLoader Tree Interface
cd ..
rmdir tmp
1 change: 1 addition & 0 deletions register
@@ -0,0 +1 @@
find . -maxdepth 1 -type d ! -name '.' ! -name '.git' -exec ./packager register {} \;

0 comments on commit a44b2a4

Please sign in to comment.