This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hello |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<notice version="2.0"> | |
<api-key>DELETED</api-key> | |
<notifier> | |
<name>php-hoptoad-notifier</name> | |
<version>0.2.0</version> | |
<url>http://github.com/rich/php-hoptoad-notifier</url> | |
</notifier> | |
<error> | |
<class>2</class> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'redis-rails' | |
gem 'redis-rack-cache' # optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Cache Store | |
# config/environments/production.rb | |
config.cache_store = :redis_store | |
## Session Store | |
# config/initializers/session_store.rb | |
MyApplication::Application.config.session_store :redis_store, | |
servers: ['redis://:[email protected]:6379/0', 'redis://:[email protected]:6379/1'] | |
## HTTP Cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Cache Store | |
# config/environments/production.rb | |
config.cache_store = :redis_store | |
## Session Store | |
# config/initializers/session_store.rb | |
MyApplication::Application.config.session_store :redis_store, | |
servers: ['redis://:[email protected]:6379/0', 'redis://:[email protected]:6379/1'] | |
## HTTP Cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Cache Store | |
# config/environments/production.rb | |
config.cache_store = :redis_store | |
## Session Store | |
# config/initializers/session_store.rb | |
MyApplication::Application.config.session_store :redis_store, | |
servers: ['redis://:[email protected]:6379/0', 'redis://:[email protected]:6379/1'] | |
## HTTP Cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dear Hoptoad add-on User, | |
The Hoptoad add-on has been relaunched as Airbrake in the Heroku | |
Add-on catalog. They offers six plan levels; please see | |
http://addons.heroku.com/airbrake for plan details. | |
The Hoptoad add-on has been depreciated. Your current installation on | |
app(s), [app], will continue to be supported for 3 months. We | |
recommend you to switch over to the Airbrake add-on at your | |
convenience. On March 30th, 2012, the Hoptoad add-on will be |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'resque/failure/airbrake' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resque::Failure::Multiple.classes = [Resque::Failure::Redis, Resque::Failure::Airbrake] | |
Resque::Failure.backend = Resque::Failure::Multiple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Airbrake.configure do |config| | |
config.api_key = 'your_key_here' | |
end |
OlderNewer