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 | |
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv | |
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" | |
rbenv install 1.9.3-p551 | |
rbenv global 1.9.3-p551 | |
gem install --no-ri --no-rdoc mailcatcher -v0.5.12 | |
rbenv rehash |
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 | |
// Clean argument values | |
$phpStormRunner = null; | |
$cleanedArgv = array(); | |
foreach ($_SERVER['argv'] as $key => $value) { | |
if (strpos($value, 'ide-phpunit.php') === false) { | |
$cleanedArgv[] = $value; | |
} else { | |
$phpStormRunner = $value; | |
} |
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
# vim: ft=fish | |
function __fish_init_boot2docker_env | |
for dockerVar in (boot2docker shellinit 2>/dev/null | sed -e 's/export/set -xU/' -e 's/=/ /'); | |
eval $dockerVar | |
end | |
end | |
function boot2docker | |
command boot2docker $argv | |
if test "$argv[1]" = "up" |
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
#!/usr/bin/env bash | |
REMOTE_DATABASE_NAME="" | |
REMOTE_SQL_USER="" | |
REMOTE_SQL_PASS="" | |
LOCAL_SQL_USER="" | |
LOCAL_SQL_PASS="" | |
LOCAL_DATABASE_NAME="" |
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 | |
class Order extends AppModel { | |
private $__Email = null; | |
public function afterSave($created, $options = array()) { | |
if ($created) { | |
$this->__notifyClient(); | |
$this->__notifyAdmin(); | |
} |
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
FROM ubuntu | |
MAINTAINER chadrien <[email protected]> | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN echo "deb http://archive.ubuntu.com/ubuntu precise universe main multiverse restricted" > /etc/apt/sources.list | |
RUN echo "deb http://security.ubuntu.com/ubuntu/ precise-security universe main multiverse restricted" >> /etc/apt/sources.list | |
RUN apt-get update | |
RUN apt-get upgrade |
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 | |
App::uses('TrailingSlashUtil', 'Lib'); | |
App::uses('Controller', 'Controller'); | |
class AppCpontroller extends Controller { | |
public function redirect ($url, $status = null, $exit = true) { | |
$url = TrailingSlashRouter::url($url); | |
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 'tests' do | |
guard 'shell' do | |
watch(%r{^(?:(?!(?:Plugin|Test)/)(.+)\.php)*$}) {|m| `cake test app #{m[1]}` } | |
watch(%r{^Plugin/([^/]+)/(?:(?!Test)(.+)\.php)*$}) {|m| `cake test #{m[1]} #{m[2]}` } | |
watch(%r{^Test/Case/(.+)Test\.php$}) {|m| `cake test app #{m[1]}` } | |
watch(%r{^Plugin/([^/]+)/Test/Case/(.+)Test\.php$}) {|m| `cake test #{m[1]} #{m[2]}` } | |
end | |
end |
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
templates: | |
global: | |
transmission: | |
host: localhost | |
port: 9091 | |
addpaused: No | |
ratio: 1.5 | |
bandwidthpriority: -1 | |
clean_transmission: | |
host: localhost |
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
set show-id = true | |
set show-refs = true | |
bind main P !git push origin | |
bind main p !git pull --rebase | |
bind main f !git fetch --all |