This file contains hidden or 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" | |
| require "resque/failure/multiple" | |
| require "resque/failure/redis" | |
| require 'exceptional' | |
| # Configure Resque connection from config/resque.yml. This file should look | |
| # something like: | |
| # development: localhost:6379 | |
| # test: localhost:6379:15 | |
| # production: localhost:6379 |
This file contains hidden or 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
| class AppServerConfig | |
| attr_accessor :port, :admin_password | |
| end | |
| class Configuration | |
| attr_accessor :tail_logs, :max_connections, :admin_password | |
| def initialize | |
| @app_server_config = AppServerConfig.new | |
| end |
NewerOlder