├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── app.nw ├── README.md ├── angular.min.js ├── angularfire.min.js ├── bootstrap.min.css ├── brise.coffee ├── brise.html ├── credits.html ├── firebase.js ├── index.html ├── package.json ├── rimekit.coffee ├── rimekit.css ├── sadebugger.coffee ├── sadebugger.html └── ui-bootstrap-tpls.min.js ├── package.json ├── rime ├── algebra.coffee ├── config.coffee ├── customizer.coffee ├── promise.coffee ├── recipe.coffee ├── sandbox.coffee └── table.coffee ├── sample ├── custom_phrase.recipe.coffee ├── dungfungpuo.recipe.coffee ├── horizontal_layout.recipe.coffee ├── run.coffee └── slash_symbols.recipe.coffee └── test ├── .placeholder ├── test-customizer.coffee └── test-recipe.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/README.md -------------------------------------------------------------------------------- /app.nw/README.md: -------------------------------------------------------------------------------- 1 | # Rime Kit 2 | -------------------------------------------------------------------------------- /app.nw/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/angular.min.js -------------------------------------------------------------------------------- /app.nw/angularfire.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/angularfire.min.js -------------------------------------------------------------------------------- /app.nw/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/bootstrap.min.css -------------------------------------------------------------------------------- /app.nw/brise.coffee: -------------------------------------------------------------------------------- 1 | app.controller 'BriseCtrl', ($scope, rimekitService) -> 2 | -------------------------------------------------------------------------------- /app.nw/brise.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /app.nw/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/credits.html -------------------------------------------------------------------------------- /app.nw/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/firebase.js -------------------------------------------------------------------------------- /app.nw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/index.html -------------------------------------------------------------------------------- /app.nw/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/package.json -------------------------------------------------------------------------------- /app.nw/rimekit.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/rimekit.coffee -------------------------------------------------------------------------------- /app.nw/rimekit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/rimekit.css -------------------------------------------------------------------------------- /app.nw/sadebugger.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/sadebugger.coffee -------------------------------------------------------------------------------- /app.nw/sadebugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/sadebugger.html -------------------------------------------------------------------------------- /app.nw/ui-bootstrap-tpls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/app.nw/ui-bootstrap-tpls.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/package.json -------------------------------------------------------------------------------- /rime/algebra.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/rime/algebra.coffee -------------------------------------------------------------------------------- /rime/config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/rime/config.coffee -------------------------------------------------------------------------------- /rime/customizer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/rime/customizer.coffee -------------------------------------------------------------------------------- /rime/promise.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/rime/promise.coffee -------------------------------------------------------------------------------- /rime/recipe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/rime/recipe.coffee -------------------------------------------------------------------------------- /rime/sandbox.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/rime/sandbox.coffee -------------------------------------------------------------------------------- /rime/table.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/rime/table.coffee -------------------------------------------------------------------------------- /sample/custom_phrase.recipe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/sample/custom_phrase.recipe.coffee -------------------------------------------------------------------------------- /sample/dungfungpuo.recipe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/sample/dungfungpuo.recipe.coffee -------------------------------------------------------------------------------- /sample/horizontal_layout.recipe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/sample/horizontal_layout.recipe.coffee -------------------------------------------------------------------------------- /sample/run.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/sample/run.coffee -------------------------------------------------------------------------------- /sample/slash_symbols.recipe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/sample/slash_symbols.recipe.coffee -------------------------------------------------------------------------------- /test/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test-customizer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/test/test-customizer.coffee -------------------------------------------------------------------------------- /test/test-recipe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rimekit/HEAD/test/test-recipe.coffee --------------------------------------------------------------------------------