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
describe( "Video model", function(){ | |
var MOCK_GET_DATA = { | |
channelName: "tgndeveloperedu", | |
commentCount: 0, | |
defaultOrder: 0, | |
dislikeCount: 0, | |
facebookCount: "0", | |
googleCount: "0", | |
likeCount: 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
<target name="-set.buildtime"> | |
<php expression="date('Ymdhms');" returnProperty="build_time" /> | |
<property name="build.version" value="${version}-${build_time}" /> | |
<echo>Build number: ${build.version}</echo> | |
<delete file="${phing.dir}/build.txt" /> | |
<echo file="${phing.dir}/build.txt">${build.version}</echo> | |
</target> |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<project name="==PROJECT NAME HERE==" basedir="." default="main"> | |
<!-- | |
This is a file that should be in the same directory as this file. | |
It defines some basic variables for use in this build file. | |
Some variables are required for each project, regardless of type: | |
version: defines the current version of your project. | |
branch: defines the default branch to build | |
url: should always be defined, but empty |
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
"require-dev": { | |
"phpmd/phpmd": "dev-master", | |
"pdepend/pdepend": "dev-master", | |
"phploc/phploc": "2.0.*@dev", | |
"squizlabs/php_codesniffer": "dev-master", | |
"sebastian/phpcpd": "2.0.*@dev", | |
"sebastian/phpdcd": "1.0.*@dev", | |
"shrink/phpcpd": "dev-master", | |
"shrink/finder-facade": "dev-master", | |
"codeception/codeception": "dev-master", |
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
"scripts": { | |
"post-install-cmd": [ | |
"npm install" | |
], | |
"post-update-cmd": [ | |
"npm install" | |
] | |
}, |
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
{ | |
"name": "project-name-here", | |
"version": "0.0.1", | |
"author": "Your Name <your-email@example.com>", | |
"description": "Simple project description", | |
"dependencies": { | |
"grunt": "~0.4.1", | |
"grunt-cli": "~0.1.9", | |
"grunt-shell": "~0.4.0", | |
"grunt-env": "*", |
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
module.exports = function(grunt){ | |
require('load-grunt-tasks')(grunt); | |
var join = require("path").join; | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON( 'package.json' ), | |
env: { |
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
Indent By A Specific Number Of Spaces: | |
C-u # C-x TAB | |
Flyspell Correct Word ( cycles ) | |
M-TAB | |
Flyspell GoTo Next Bad Spelling | |
C-, | |
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
version=0.1.0 | |
branch=master | |
url= | |
urlBase=.192.168.0.161.xip.io |
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
#!/bin/bash | |
cd ${0%/*} | |
cd ../../code | |
bin/phing -f build.xml analyze-quick |
OlderNewer