- Install Codeception via Composer.
composer require "codeception/codeception:@stable"
- Create the bootstrap in the app directory.
codecept bootstrap app
- Set the PhpBrowser url config in app/tests/acceptance.suite.yml.
- Move the codeception.yml file to the root directory.
mv app/codeception.yml codeception.yml
- Adjust the paths in codeception.yml to reference app/tests rather than tests.
- Move TestCase.php to the unit tests directory.
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
Show hidden characters
[ | |
/* Vintage mode keybindings */ | |
// Quick exit to command mode | |
{ "keys": ["j", "k"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] |
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
# Install pre-requisites | |
sudo apt-get install build-essentials ocaml | |
# Get the sources | |
wget http://www.seas.upenn.edu/~bcpierce/unison/download/releases/beta/unison-2.45.28.tar.gz | |
# Untar them | |
tar xzvf unison-2.45.28.tar.gz | |
# Cd to the unpacked directory | |
cd unison-2.45.28 | |
# Build unison (ignore the etags error when finished) | |
make NATIVE=yes UISTYLE=text |
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
#!/bin/bash | |
######################################################################################## | |
# Purpose : Updates TrinityCore | |
####################################################################################### | |
# Home for the trinity/server user (suggested user "trinity") | |
HOME="/home/trinity" | |
# Location of the ACE library, "/usr/lib" is default for system wide installation | |
LIBACE="/usr/lib" |
Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications
like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.
open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html