Minimum browser compatibility
- IE >= 11
- Windows
- OS X
- iOS
- Android
git diff --name-only $(git merge-base master HEAD)
https://stackoverflow.com/questions/10641361/get-all-files-that-have-been-modified-in-git-branch
*** Settings ***
Library SeleniumLibrary
*** Variables ***
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
import os | |
options = Options() | |
options.add_argument('--headless') | |
# Other options are here. http://chromedriver.chromium.org/capabilities | |
driver = webdriver.Chrome(chrome_options=options) | |
driver.get("") |
# Gemfile
gem 'rmagick'
require 'RMagick'
image = Magick::Image.read("before.png").first
gc = Magick::Draw.new
{ | |
"devDependencies": { | |
"husky": "^1.2.0", | |
"lint-staged": "^8.1.0" | |
}, | |
"husky": { | |
"hooks": { | |
"pre-commit": "lint-staged" | |
} | |
}, |
files: | |
"/opt/elasticbeanstalk/hooks/appdeploy/post/50_restart_shoryuken": | |
mode: "000777" | |
content: | | |
EB_SCRIPT_DIR=$(/opt/elasticbeanstalk/bin/get-config container -k script_dir) | |
EB_SUPPORT_DIR=$(/opt/elasticbeanstalk/bin/get-config container -k support_dir) | |
. $EB_SUPPORT_DIR/envvars | |
. $EB_SCRIPT_DIR/use-app-ruby.sh | |
mkdir -p /var/app/support/pids |