├── .gitignore ├── README.md ├── Rakefile ├── demo ├── css │ └── box-flex.css └── index.html ├── dist └── flexie.min.js ├── src └── flexie.js ├── test ├── css │ ├── demo.css │ └── test.css └── index.html └── vendor ├── google-compiler ├── COPYING ├── README └── compiler.jar └── yuicompressor ├── README └── yuicompressor-2.4.2.jar /.gitignore: -------------------------------------------------------------------------------- 1 | *.tmproj 2 | dist/flexie.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/Rakefile -------------------------------------------------------------------------------- /demo/css/box-flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/demo/css/box-flex.css -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/demo/index.html -------------------------------------------------------------------------------- /dist/flexie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/dist/flexie.min.js -------------------------------------------------------------------------------- /src/flexie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/src/flexie.js -------------------------------------------------------------------------------- /test/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/test/css/demo.css -------------------------------------------------------------------------------- /test/css/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/test/css/test.css -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/test/index.html -------------------------------------------------------------------------------- /vendor/google-compiler/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/vendor/google-compiler/COPYING -------------------------------------------------------------------------------- /vendor/google-compiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/vendor/google-compiler/README -------------------------------------------------------------------------------- /vendor/google-compiler/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/vendor/google-compiler/compiler.jar -------------------------------------------------------------------------------- /vendor/yuicompressor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/vendor/yuicompressor/README -------------------------------------------------------------------------------- /vendor/yuicompressor/yuicompressor-2.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctyper/flexie/HEAD/vendor/yuicompressor/yuicompressor-2.4.2.jar --------------------------------------------------------------------------------