Synchronises Assets between Rails and S3.
Asset Sync is built to run with the new Rails Asset Pipeline feature of 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
We are currently trying to talk with Heroku to iron these out.
- Will not work on heroku on an application with a RAILS_ENV configured as anything other than production
- Will not work on heroku using ENV variables with the configuration as described below, you must hardcode all variables
When you see rake assets:precompile
during deployment. Herok is actually running something like
env RAILS_ENV=production DATABASE_URL=scheme://user:pass@127.0.0.1/dbname bundle exec rake assets:precompile 2>&1
This means the RAILS_ENV you have set via heroku:config is not used.
Workaround: you could have just one S3 bucket dedicated to assets and ensure to set keep the existing remote files
AssetSync.configure do |config|
...
config.aws_bucket = 'app-assets'
config.existing_remote_files = "keep"
end
Currently when heroku runs rake assets:precompile
during deployment. It does not load your Rails application's environment config. This means using any ENV variables you could normally depend on are not available.
Workaround: you could just hardcode your AWS credentials in the initializer or yml
AssetSync.configure do |config|
config.aws_access_key = 'xxx'
config.aws_access_secret = 'xxx'
config.aws_bucket = 'mybucket'
end
Add the gem to your Gemfile
gem "asset_sync"
Generate the rake task and config files
rails g asset_sync:install
If you would like to use a YAML file for configuration instead of the default (Rails Initializer) then
rails g asset_sync:install --use-yml
Configure config/environments/production.rb to use Amazon S3 as the asset host and ensure precompiling is enabled.
# config/environments/production.rb
config.action_controller.asset_host = Proc.new do |source, request|
request.ssl? ? "https://#{ENV['AWS_BUCKET']}.s3.amazonaws.com" : "http://#{ENV['AWS_BUCKET']}.s3.amazonaws.com"
end
We support two methods of configuration.
- Rails Initializer
- A YAML config file
Using an Initializer is the default method and is best used with environment variables. It's the recommended approach for deployments on Heroku.
Using a YAML config file is a traditional strategy for Capistrano deployments. If you are using Moonshine (which we would recommend) then it is best used with shared configuration files.
The recommend way to configure asset_sync is by using environment variables however it's up to you, it will work fine if you hard code them too. The main reason is that then your access keys are not checked into version control.
The generator will create a Rails initializer at config/initializers/asset_sync.rb
.
AssetSync.configure do |config|
config.aws_access_key = ENV['AWS_ACCESS_KEY']
config.aws_access_secret = ENV['AWS_ACCESS_SECRET']
config.aws_bucket = ENV['AWS_BUCKET']
# config.aws_region = 'eu-west-1'
config.existing_remote_files = "keep"
end
If you used the --use-yml
flag, the generator will create a YAML file at config/initializers/asset_sync.rb
.
defaults: &defaults
aws_access_key: "<%= ENV['AWS_ACCESS_KEY'] %>"
aws_access_secret: "<%= ENV['AWS_ACCESS_SECRET'] %>"
# You may need to specify what region your S3 bucket is in
# aws_region: "eu-west-1"
development:
<<: *defaults
aws_bucket: "rails-app-development"
existing_remote_files: keep # Existing pre-compiled assets on S3 will be kept
test:
<<: *defaults
aws_bucket: "rails-app-test"
existing_remote_files: keep
production:
<<: *defaults
aws_bucket: "rails-app-production"
existing_remote_files: delete # Existing pre-compiled assets on S3 will be deleted
Add your Amazon S3 configuration details to heroku
heroku config:add AWS_ACCESS_KEY=xxxx
heroku config:add AWS_ACCESS_SECRET=xxxx
heroku config:add AWS_BUCKET=xxxx
Or add to a traditional unix system
export AWS_ACCESS_KEY=xxxx
export AWS_ACCESS_SECRET=xxxx
export AWS_BUCKET=xxxx
- aws_access_key: your Amazon S3 access key
- aws_access_secret: your Amazon S3 access secret
- aws_region: the region your S3 bucket is in e.g. eu-west-1
- existing_remote_files: what to do with previously precompiled files, options are keep or delete
If you are using anything other than the US buckets with S3 then you'll want to set the region. For example with an EU bucket you could set the following with YAML.
production:
# ...
aws\_region: 'eu-west-1'
Or via the initializer
AssetSync.configure do |config|
# ...
config.aws_region = 'eu-west-1'
end
A rake task is installed with the generator to enhance the rails precompile task by automatically running after it:
# lib/tasks/asset_sync.rake
Rake::Task["assets:precompile"].enhance do
AssetSync.sync
end
- Add some before and after filters for deleting and uploading
- Support more cloud storage providers
- Better test coverage
Have borrowed ideas from:
MIT License. Copyright 2011 Rumble Labs Ltd. rumblelabs.com