khoan
khoan
You can define a scope inside your model as a work around. ``` class MyModel < ActiveRecord::Base scope_procedure :any_field_eq, lambda { |field_csv| field_eq field_csv.try(:split, ',') } end ``` If params[:search][:any_field_eq]...
just got bitten by this...is there a workaround other than to git push afresh to heroku? error log here: https://gist.github.com/khoan/753927225c120739b3aa
looks like --with-http_gzip_static_module wasn't included when compiling nginx binary (see http://nginx.org/en/docs/http/ngx_http_gzip_static_module.html)
changes are not limited to just datastores, the server endpoint will need to be augmented to become aware of more than just job uid. best bet at the moment is...
``` # this runs in seconds identify -ping -format "%m %w %h" /path/to/video.mp4[0] ```
My setup is Cloudfront with custom origin to my heroku (Cedar) Rails 3.2 app being served by Thin Assets are precompiled on Heroku Cedar. It appears that Thin skips Rails...
AFAIK, stuff from public/ folder are served statically, so Rails stack is not involved in generating dynamic responses. Precompiled assets are compiled into public/ folder, therefore, served as static responses....