Skip to content

Instantly share code, notes, and snippets.

View jlcapps's full-sized avatar

Lee Capps jlcapps

View GitHub Profile
@geopet
geopet / git_config.sh
Last active August 21, 2016 03:11
A set of scripts to be used to get a vagrant install up and running with Ruby 2.2.0, Rails 4.2.0, Git 2.0.1, Vim 7.4, MySQL, and PostgreSQL
#!/usr/bin/env bash
cd
git clone https://gist.github.com/8797857.git gitconfig
ln -s ~/gitconfig/.gitconfig ~/.gitconfig
@josephwecker
josephwecker / new_bashrc.sh
Created August 11, 2012 04:36
Replace .bashrc, .bash_profile, .profile, etc. with something much more clean, consistent, and meaningful. Now a repo: https://github.com/josephwecker/bashrc_dispatch
#!/bin/bash
# License: Public Domain.
# Author: Joseph Wecker, 2012
#
# -- DEPRICATED --
# This gist is slow and is missing .bashrc_once
# Use the one in the repo instead! https://github.com/josephwecker/bashrc_dispatch
# (Thanks gioele)
#
# Are you tired of trying to remember what .bashrc does vs .bash_profile vs .profile?
@woodie
woodie / README.rdoc
Created September 5, 2010 12:29
Rails 2.3.9 on App Engine with DataMapper

Rails 2.3.9 on App Engine (DataMapper)

Do not use rvm (or install and run from JRuby). The google-appengine gem must install into your system MRI. The appengine-sdk gem includes a complete Java app server. We bootstrap Java from MRI, then your app runs inside a servlet container (with access to all the APIs) using the version of JRuby installed into each app.

We assumed Rails 2 would never work without rubygems, and we committed to gem bunlder for JRuby on App Engine, so we were waiting for Rails 3. Fortunately, Takeru Sasaki was able to patch the Rails 2.3.x calls to rubygems, and now we have it working. Rails 2.3.x currently spins up several seconds faster than Rails 3, and just a few seconds behind Sinatra.

See the TInyDS version also: gist.github.com/gists/269075

Install the Development Environment