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 / 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'
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@wprater
wprater / Rakefile
Last active August 29, 2015 14:01
Build RubyMotion for an adhoc environment.
# -*- coding: utf-8 -*-
$:.unshift('/Library/RubyMotion/lib')
require 'motion/project/template/ios'
begin
require 'bundler'
Bundler.require
rescue LoadError
end