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
| --- | |
| <%= ENV["RAILS_ENV"] %>: | |
| error_collector: | |
| capture_source: true | |
| enabled: true | |
| ignore_errors: ActionController::RoutingError | |
| apdex_t: 0.5 | |
| ssl: false | |
| monitor_mode: true | |
| license_key: <%= ENV["NEW_RELIC_LICENSE_KEY"] %> |
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
| files = directory.files.all | |
| truncated = files.is_truncated | |
| while truncated | |
| set = directory.files.all( :marker => files.last.key ) | |
| truncated = set.is_truncated | |
| files = files + set | |
| end |
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
| /* | |
| imagesQueue.js FULL SOURCE | |
| A simple, cross-browser, *parallel* images loader object. | |
| Check http://labs.lieldulev.com/imagesQueue/ for more details. | |
| */ | |
| imagesQ={ | |
| onComplete: function(){} // Fires when all finished loading | |
| ,onLoaded: function(){} // Fires when an image finishes loading | |
| ,onErrored: function(){} // Fires when an image fails to load | |
| ,current: null // Last loaded image (Image Object) |
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
| source "http://rubygems.org" | |
| gem 'fog' |
NewerOlder