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
///// Plugin Includes ///// | |
var gulp = require('gulp'), | |
uglify = require('gulp-uglify'), | |
plumber = require('gulp-plumber'), | |
concat = require('gulp-concat'), | |
jshint = require('gulp-jshint'), | |
autoprefixer = require('gulp-autoprefixer'), | |
browserSync = require('browser-sync'), | |
reload = browserSync.reload, | |
sass = require('gulp-sass'); |
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
<?php namespace spec; | |
use PhpSpec\ObjectBehavior; | |
use Prophecy\Argument; | |
class BowlingGameSpec extends ObjectBehavior { | |
function it_scores_a_gutter_game_as_zero() { | |
$this->rollTimes( 20, 0 ); | |
$this->score()->shouldBe( 0 ); |
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
// A small and easy experiment by Harry Roberts showing how to achieve equal-width columns in a table with table-layout: fixed;. | |
// DEMO | |
http://jsfiddle.net/csswizardry/zfSt4/ | |
// HTML | |
<ul class="tabs primary-nav"> | |
<li class="tabs__item"> | |
<a href="#" class="tabs__link">Home</a> | |
</li> |