If you do this, you are awesome.
- Update to node 0.4.0
- Go to https://github.com/ry/node/issues
- Pick a bug.
- Try to reproduce it.
- Comment with either:
- "works for me on 0.4.0"
| public static class TemplateExtensions | |
| { | |
| public static string ToMustacheKey(this string name) | |
| { | |
| return "{{" + name + "}}"; | |
| } | |
| public static string ToMustacheKey<T>(this Expression<Func<T, object>> expression) | |
| { | |
| return expression.ToAccessor().Name.ToMustacheKey(); |
| define(function (require, exports, module) { | |
| var ns = require('namespace'), | |
| Backbone = require('use!backbone'), | |
| Marionette = require('use!marionette'), | |
| // the tpl require.js plugin extends the text plugin to compile the text into an underscore template | |
| // The require.js optimizer will minify and concatenate them to your apps single JS | |
| ordersViewTpl = require('tpl!templates/orders.html'); | |
| var Orders = ns.module(); |
If you do this, you are awesome.
| #!/bin/bash | |
| NAME=`basename $(pwd)` | |
| CORE=./bin/$NAME.dll | |
| TEST=./bin/$NAME.specs.dll | |
| find lib -name '*.dll' > refs | |
| ref=`paste -sd, refs` | |
| rm refs |