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
import * as ui from 'waves-ui'; | |
class CollisionSegmentBehavior extends ui.behaviors.BaseBehavior { | |
segmentsData = []; | |
DIRECTION = { | |
LEFT: 'LEFT', | |
RIGHT: 'RIGHT' | |
}; |
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
import React, { Component } from 'react'; | |
import ReactDOM from 'react-dom'; | |
// import PropTypes from 'prop-types'; | |
import * as wavesUI from 'waves-ui'; | |
import uuid from "uuid"; | |
class WavesUITimeline extends Component { |
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
⚡ blt vm:nuke && blt vm | |
blt > vm:nuke: | |
This will destroy your VM, and delete all associated configuration. Continue? [y] : y | |
webny: Are you sure you want to destroy the 'webny' VM? [y/N] y | |
==> webny: Forcing shutdown of VM... | |
==> webny: Destroying VM and associated drives... | |
==> webny: Pruning invalid NFS exports. Administrator privileges will be required... | |
==> webny: [vagrant-hostsupdater] Removing hosts | |
Password: |
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
# @file | |
# .travis.yml - Drupal 8 Travis CI Integration | |
language: php | |
sudo: false | |
php: | |
- 5.6 |
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
#!/usr/bin/env bash | |
sudo apt-get install libxss1 libappindicator1 libindicator7 | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome*.deb | |
sudo apt-get install -f | |
sudo apt-get install xvfb | |
sudo apt-get install unzip |
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
cd $HOME | |
ln -s `which php56` ~/bin/php | |
export PATH=$HOME/bin:$PATH | |
curl -sS https://getcomposer.org/installer | php56 | |
echo -e "\n# Composer\nalias composer=\"php56 \$HOME/composer.phar\"" >> $HOME/.bash_profile | |
echo -e "\n# Load $HOME/bin\nexport PATH=$HOME/bin:$PATH" >> $HOME/.bash_rc | |
composer global require drush/drush | |
ln -s ~/.composer/vendor/drush/drush/drush ~/bin/composer | |
export DRUSH_PHP=$(which php56) | |
source $HOME/.bash_profile |
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
Feature: #[[$Title$]]# | |
#[[$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
# Given: Defines the inital state of the system for the scenario | |
# When: Describes the action taken by the person/role | |
# Then: Describes the obeservable system state after the action has been performed | |
$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
Scenario: $Title$ | |
Given $given$ | |
When $when$ | |
And $and$ | |
Then $then$ |
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
# {A} - the benefit or value of the feature | |
# - In order to achieve -> Business Value | |
# {B} - the role (or person) who will benefit | |
# - as a person who benefits; The "author" of this feature | |
# {C} - short feature description: | |
# - Description of the feature, the action the person will take | |
$END$ |