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
forge "http://forge.puppetlabs.com" | |
mod "nodes/php" | |
mod "puppetlabs/mysql" | |
mod "willdurand/composer" | |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.define "development", primary: true do |dev| | |
dev.vm.box = "precise-64" |
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
group { 'puppet': | |
ensure => present, | |
} | |
class initial_setup { | |
exec { 'apt-get update': | |
command => '/usr/bin/apt-get update', | |
} | |
package { "essential-packages": |
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 |
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
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
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
{ | |
"name": "project-name-here", | |
"version": "0.0.1", | |
"author": "Your Name <[email protected]>", | |
"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
"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
"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", |