links for old versions of Docker for Mac
Note:
- Old versions are not supported by the Docker team!
- This Gist may be removed if Docker officially provides such listing.
Edge channel:
{ | |
"name": "taskmanager-frontend", | |
"version": "0.0.0", | |
"license": "MIT", | |
"scripts": { | |
"ng": "ng", | |
"start": "ng serve", | |
"build": "ng build", | |
"test": "ng test", | |
"lint": "ng lint", |
# | |
# Spaceship ZSH Theme | |
# | |
# Author: Denys Dovhan, denysdovhan.com | |
# License: MIT | |
# https://github.com/denysdovhan/spaceship-zsh-theme | |
# ------------------------------------------------------------------------------ | |
# CONFIGURATION | |
# The default configuration that can be overridden in .zshrc |
Note:
Edge channel:
Trip > | |
belongs_to :origin, class_name: 'City' | |
belongs_to :destiny, class_name: 'City' | |
City > | |
has_many :origins, class_name: 'Trip', foreign_key: 'origin_id' | |
has_many :destinys, class_name: 'Trip', foreign_key: 'destiny_id' | |
Migration > |
version: '3.6' | |
services: | |
db: | |
image: 'postgres:9.5' | |
volumes: | |
- 'postgres:/var/lib/postgresql/data' | |
app: | |
depends_on: |
# Capybara config with docker-compose environment vars | |
Capybara.app_host = "http://#{ENV['TEST_APP_HOST']}:#{ENV['TEST_PORT']}" | |
Capybara.default_driver = :selenium | |
Capybara.javascript_driver = :selenium | |
Capybara.run_server = false | |
# Configure the Chrome driver capabilities & register | |
args = ['--no-default-browser-check', '--start-maximized'] | |
caps = Selenium::WebDriver::Remote::Capabilities.chrome("chromeOptions" => {"args" => args}) | |
Capybara.register_driver :selenium do |app| |
group :test do | |
gem 'selenium-webdriver', '~> 3.0' | |
end |
<% flash.each do |type, message| %> | |
<% if type == 'success' || type == 'notice' %> | |
<script type="text/javascript"> | |
$(function(){ | |
PNotify.success({ | |
text: "<%= message %>", | |
delay: 3000, | |
styling: 'bootstrap4' | |
}); | |
}); |