Because loading gems can take longer than you think
Now available as a gem - get it here
| #!/bin/bash | |
| # run_ios_sim builds and runs an iOS app on the simulator | |
| # | |
| # It is designed to replicate the behavior of "Run" in Xcode and assumes basic | |
| # xcodebuild usage. | |
| # | |
| # USAGE: | |
| # export IOS_SIM_UDID=342F9A20-DF48-41A9-BE60-C6B35F47E97F; \ | |
| # export BUNDLE_IDENTIFIER=a.Some; \ | |
| # export APP_PATH=$PWD/Build/Debug-iphonesimulator/$APP_NAME.app \ |
| import resolver from './helpers/resolver'; | |
| import { | |
| setResolver | |
| } from 'ember-qunit'; | |
| setResolver(resolver); | |
| // Since CircleCI runs with PhantomJS 1.9.x, need this to make things | |
| // green! | |
| if (!Function.prototype.bind) { |
Because loading gems can take longer than you think
Now available as a gem - get it here
| # memcached requires libevent | |
| cd /usr/local/src | |
| curl -L -O http://cloud.github.com/downloads/libevent/libevent/libevent-2.0.17-stable.tar.gz | |
| tar -xvzf libevent-2.0.17-stable.tar.gz | |
| cd libevent-2.0.17-stable* | |
| ./configure | |
| make | |
| sudo make install | |
| # Compile memcached utility |
<?php
/**
* @method DbTable_Row_Foo createRow()
*/
class DbTable_Foo extends Zend_Db_Table_Abstract
{
protected $_primary = 'foo_id';
protected $_name = 'foo';In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.
For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.