Rafael Bodill

Results 57 issues of Rafael Bodill

Models used by repositories must have a defined __construct function, otherwise when query builder casts result as_object, you will get this error: > Class [...] does not have a constructor...

I see that as part of supporting mustache.js 0.8.0 you are now rendering the template. This would make it **impossible** to use [partials](https://github.com/janl/mustache.js#partials)!

See http://requirejs.org/docs/api.html#config-moduleconfig In-order for plugin to use '.mustache' file extension, I had to change line 49 to: ``` var ext = (config.config.stache && config.config.stache.extension) || '.html'; ``` My require.js config...

When a new song begins, the hooks/player is executed **twice**, instead of only once. When I change a song manually, it's executed once as expected. Is it something you can...

Feature request: Allow `~` and/or environment variables within configuration files, e.g.: ``` dir=~/media/dl input-file=~/.cache/aria2/session.dat save-session=~/.cache/aria2/session.dat log=~/.cache/aria2/aria2.log on-download-complete=~/.local/bin/dizzer dht-file-path=~/.cache/aria2/dht.dat dht-file-path6=~/.cache/aria2/dht6.dat ``` An alternative would be environment variable `$HOME` (and `%UserProfile%` in...

This revision adds useful traversal methods from rod, and method to return tag name. Usage example for scraping paragraphs between headers: ```js export default function({ doc, absoluteURL }) { const...