Dave Myron
Dave Myron
I have a file that enca (correctly) reports as UCS-2/LF/21 (a data file downloaded from Tableau). However, enca is unable to convert it to UTF-8: ``` ➜ enca --version enca...
The docs for hooks give a couple examples for an `on_failure_bury` method that goes on to call `self.bury`. The problem is that `self.bury` isn't a method and implementing a hook...
I had created a superclass and set the queue there but noticed that none of the subclasses got the configuration from the superclass. This makes sense after looking at the...
This is a rather strange one. I have a queue configured to be worked by 16 threads, and looking at `htop` it does appear there are that many threads working....
Let's Encrypt defaults to 90 days but I believe the API allows for longer. Can ght-acme.sh provide this functionality?
I have a simple `it { should validate_presence :thing_id }` inside a describe block. But when I run the spec it raises the following error: `The use of doubles or...
I'm sure we're all interested in hearing how Compass & the HTML5 Boilerplate work with the new asset pipeline in Rails 3.1. Could we has info?
I always forget how my rails apps got the HTML5 boilerplate stuff initialized. I go 1) rake -T, 2) rails g and finally 3) google for rails gem html5 boilerplate,...
Hamlit doesn't have the `haml_concat` method that the `html_tag` helper uses. The error is: ``` undefined method `haml_concat' for # ``` I've [opened an issue](https://github.com/k0kubun/hamlit/issues/98) at hamlit's repo, as well.
With html5-rails 0.0.5, a fresh install results in the error `ActionView::Template::Error (File to import not found or unreadable: variables.` Renaming the file `app/assets/styles/_variables.css.scss` to `variables.css.scss` does _not_ correct the problem.