* Initial automatic cleanup with rubocop * Fix syntax error introduced by rubocop * Cleanup seeds file * Cleanup lib folder * Exclude bin folder because it contains auto generated files * Make Rubocop a little bit more chatty * Block length should not include comments in the count * Cleanup config folder * Cleanup specs * Updated Rubocop version and generated a todo file * Fix broken ArticlesApi spec * Fix tests * Restored rubocop pre-commit hook
7 lines
415 B
Ruby
7 lines
415 B
Ruby
FastlyRails.configure do |c|
|
|
c.api_key = ApplicationConfig["FASTLY_API_KEY"] # Fastly api key, required
|
|
c.max_age = 86500 # time in seconds, optional, defaults to 2592000 (30 days)
|
|
c.service_id = ApplicationConfig["FASTLY_SERVICE_ID"] # Fastly service you will be using, required
|
|
c.stale_if_error = 26400
|
|
c.purging_enabled = Rails.env.production? # No need to configure a client locally (since 0.4.0)
|
|
end
|