Questions tagged [asset-sync]

Synchronises Assets between Rails and S3.

Asset Sync is built to run with the new Rails Asset Pipeline feature introduced in Rails 3.1. After you run bundle exec rake assets:precompile your assets will be synchronised to your S3 bucket, optionally deleting unused files and only uploading the files it needs to.

This was initially built and is intended to work on Heroku but can work on any platform.

Github

34 questions
0
votes
1 answer

asset_sync and aws beanstalk asset pipeline manifest not working

Asset Sync is working and the assets are saved to the s3 bucket. GET http://s3.amazonaws.com/app-staging/javascripts/application.js 404 (Not Found) It shouldn't be /javascripts/application.js it should be /assets/application.js! The app is…
AJcodez
  • 31,780
  • 20
  • 84
  • 118
0
votes
1 answer

Some asstes not serving to S3

My asstes are served to S3 using asset_sync (1.0.0) and all work almost fine, just the assets loaded from css, like background-image:url.. and all the javascript files like dose not get pushed…
0
votes
1 answer

Encoding issue for Asset Sync + Rackspace

I can deploy to heroku successfully, but if I click on my .css file I get this Gemfile gem "asset_sync" gem "fog" Asset Syncs AssetSync.configure do |config| config.fog_provider = 'Rackspace' config.rackspace_username =…
sparkle
  • 7,530
  • 22
  • 69
  • 131
0
votes
1 answer

Bypass Assets In Public Directory In Development

I have a Rails 3.2 Project deployed to Heroku and using Asset Sync that has grown to a point where there are so many assets that Precompiling them on Heroku is too slow. So I'm using: $ rake assets:precompile … to compile the assets locally (with…
Undistraction
  • 42,754
  • 56
  • 195
  • 331
1 2
3