
seen from Singapore

seen from United States

seen from United States
seen from China

seen from United Kingdom

seen from United States
seen from Malaysia

seen from United Kingdom

seen from United States
seen from China

seen from Poland
seen from Hong Kong SAR China
seen from United States
seen from China
seen from United States

seen from United States

seen from United States
seen from United States

seen from United States

seen from United States
clearing precompiled assets cache in @rails
first development wasn’t reflecting changes in my css, so i did the following:
rake assets:clobber
which didn't work, so then i:
rake tmp:cache:clear
which did. then it wasn't working in production (@heroku), so i:
git push heroku master -f
which didn't work, so then i:
heroku run rake tmp:cache:clear
still no go. tried this:
rake assets:precompile RAILS_ENV=production git add; git commit; git push heroku master
that worked
Handlebars (Handlebarsjs) + Precompiled Templates = Error: has no method 'merge'
After a server move we started encountering errors after precompiling our handlebars templates. Googling didn't help much but after playing around with various versions of the compiler and runtime (both of ours were old on the older server) it seems like using runtime 1.0.0 with the older 1.0.11 version of the handlebars CLI compiler works.
Installing older version of compiler via NPM:
$ npm install [email protected] -g
I hope you didn't waste too much time and found this solution quicker than I was able to.