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
Before you do the following, use the most specific selector you can. | |
1. Isolate your HTML and CSS into a blank HTML document | |
2. For each ruleset: | |
1. Copy computed style (including inherited) | |
2. Remove -webkit properties | |
3. Remove your properties | |
4. Mix the result into your ruleset | |
When you update any of your properties, you should do the above again for the updated rulesets. |
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
attr_accessible :one, :two, :three, :four, :five, :six, :seven, :eight, :nine, :ten, :eleven, | |
:twelve, :thirteen, :fourteen, :fifteen |
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
attr_accessible :one, | |
:two, | |
:three, | |
:four, | |
:five, | |
:six, | |
:seven, | |
:eight, | |
:nine, | |
:ten, |
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
test: | |
override: | |
- bundle exec rspec spec | |
deployment: | |
acceptance: | |
branch: master | |
commands: | |
- ./script/heroku_deploy.sh <ACCEPTANCE_HEROKU_APP>: | |
timeout: 300 |
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.all(0, Resque::Failure.count).each_with_index do |failure, i| | |
job_string = failure['payload']['args'][0]['job_class'] | |
exception_string = failure['exception'] | |
p "#{i} #{job_string} #{exception_string}" | |
if exception_string == 'AWS::S3::SlowDown' | |
p "Retrying job #{i}" | |
Resque::Failure.requeue i | |
end |