seen from China
seen from United States
seen from United States

seen from Malaysia
seen from Hong Kong SAR China
seen from China

seen from Australia
seen from Italy

seen from T1

seen from India

seen from Mexico
seen from United States
seen from China
seen from China
seen from Bulgaria

seen from Mexico

seen from Russia
seen from China
seen from Australia
seen from China
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.