Roman Pearah
Roman Pearah
I realize that part of the reason for this exercise was to learn more about Ember and its API. It's very cool that it can be made to so what...
``` coffeescript App*.Router.map -> @resource "advisors", path: "/" @resource "advisor", path: "/advisor/:advisor_id", -> @resource "advisor.accounts", path: "/accounts", -> @route "new" @resource "advisor.profile", path: "/profile", -> @route "update" @resource "advisor.tickets", path:...
When creating a new CoffeeScript project, Mimosa produces `mimosa-config.js` rather than `mimosa-config.coffee` as one would expect.
I've been entertaining a thought about how it would be nice if Mimosa's config could be integrated into [node-config](https://github.com/lorenwest/node-config), a very powerful and flexible general configuration system for node apps....
When running `mimosa watch -sd` on Linux, I'm often to hit with `ENOTEMPTY, directory not empty` but eventually it will take if I run it enough times. Is this simply...
If i've asked about this before, and you've given me an answer, I apologize in advance for repeating myself. I have some vague memory of discussing it with someone but...
We Mimosa junkies love new features and [this one](https://github.com/Sage/streamlinejs) seems like it would be a great fit. Basically Mimosa would need to recognize `._js` and `._coffee` files so as to...
Invalidations aren't taking into account the possibility that the CloudFront distribution is using an Origin Path into the S3 bucket, so that if you have an `s3_key_prefix` set (so that...
If you have elements that expect to get `context` (e.g. theming), this is broken by wrapping them in `MorphReplace`. For example, I tried to use this with two `SvgIcon`s from...
The way dates are handled is problematic because of time zones. I have been trying to chase down why my code was acting differently every time I deployed to Heroku...