├── .gitignore ├── .gitmodules ├── CHANGELOG ├── Gemfile ├── Jakefile ├── LICENSE ├── README.md ├── jake.yml ├── site ├── api.md ├── changelog.md ├── css │ └── docs.css ├── downloads.md ├── downloads │ ├── firmin-1.0.0-min.js │ └── firmin-1.0.0.js ├── index.md ├── site.hs └── templates │ └── default.html ├── src ├── firmin.js └── matrix.js ├── tasks └── deploy └── test ├── 3d-transforms.html ├── animate.html ├── assertions.js ├── chain.html ├── composite.html ├── runner.html ├── specs ├── cssmatrix_spec.js └── parsers_spec.js ├── transforms.html └── transition.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "http://rubygems.org" 2 | gem "jake", "~>1.0" 3 | -------------------------------------------------------------------------------- /Jakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/Jakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/README.md -------------------------------------------------------------------------------- /jake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/jake.yml -------------------------------------------------------------------------------- /site/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/api.md -------------------------------------------------------------------------------- /site/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/changelog.md -------------------------------------------------------------------------------- /site/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/css/docs.css -------------------------------------------------------------------------------- /site/downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/downloads.md -------------------------------------------------------------------------------- /site/downloads/firmin-1.0.0-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/downloads/firmin-1.0.0-min.js -------------------------------------------------------------------------------- /site/downloads/firmin-1.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/downloads/firmin-1.0.0.js -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/index.md -------------------------------------------------------------------------------- /site/site.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/site.hs -------------------------------------------------------------------------------- /site/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/site/templates/default.html -------------------------------------------------------------------------------- /src/firmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/src/firmin.js -------------------------------------------------------------------------------- /src/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/src/matrix.js -------------------------------------------------------------------------------- /tasks/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/tasks/deploy -------------------------------------------------------------------------------- /test/3d-transforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/3d-transforms.html -------------------------------------------------------------------------------- /test/animate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/animate.html -------------------------------------------------------------------------------- /test/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/assertions.js -------------------------------------------------------------------------------- /test/chain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/chain.html -------------------------------------------------------------------------------- /test/composite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/composite.html -------------------------------------------------------------------------------- /test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/runner.html -------------------------------------------------------------------------------- /test/specs/cssmatrix_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/specs/cssmatrix_spec.js -------------------------------------------------------------------------------- /test/specs/parsers_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/specs/parsers_spec.js -------------------------------------------------------------------------------- /test/transforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/transforms.html -------------------------------------------------------------------------------- /test/transition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beastaugh/firmin/HEAD/test/transition.html --------------------------------------------------------------------------------