Capistrano tasks for interacting with Fastly, a CDN/caching service.
Add this line to your application's Gemfile:
gem 'capistrano-fastly'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-fastly
The only task at the moment is purge_all
which flushes the entire cache for a single site.
Add this to your deploy.rb file with your real service id and api key:
require 'capistrano/fastly'
set :fastly_config, {
:service_id => '----',
:api_key => '----'
}
Then you'll be able to call this task directly:
cap fastly:purge_all
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request