Skip to content

Instantly share code, notes, and snippets.

View wprater's full-sized avatar
💾
Building

Will Prater wprater

💾
Building
View GitHub Profile
@wprater
wprater / app_delegate.rb
Created August 22, 2012 21:23
Minimal ruby files for Cordova and RubyMotion.
class AppDelegate
def init
cookieStorage = NSHTTPCookieStorage.sharedHTTPCookieStorage
cookieStorage.cookieAcceptPolicy = NSHTTPCookieAcceptPolicyAlways
CDVURLProtocol.registerURLProtocol
super
end
@wprater
wprater / Rakefile
Created August 22, 2012 14:08
Setup file for RubyMotion to build Cordova apps.
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'MyJavaScriptApp'
app.version = '1.0'
# My setup is a bit different, as Im building for many environements and the
# main app is written in JavaScript.
@wprater
wprater / ruby_motion.py
Created August 21, 2012 09:13
RubyMotion module for SublimeLinter bundle for Sublime Text.
from ruby import Linter
CONFIG = {
'language': 'RubyMotion',
'executable': '/Library/RubyMotion/bin/ruby',
'lint_args': '-wc'
}
@wprater
wprater / php-cgi.rb
Created May 25, 2012 15:49 — forked from daz/php-cgi.rb
Homebrew Formula for PHP 5.4.3 as php-cgi (for nginx, etc.)
# Homebrew Formula for PHP 5.4.3 as php-cgi (for nginx, etc.)
require 'formula'
class PhpCgi <Formula
@url='http://www.php.net/get/php-5.4.3.tar.gz/from/a/mirror'
@version='5.2.17'
@homepage='http://php.net/'
@md5='c9dccc89cc89d39e84f6e6f0cf1c8a65'