Commit 9d3e514b923899c2d4d4d89c5dd38560a4eacec2

Authored by John Barnette
0 parents

Initial commit

Showing 6 changed files with 60 additions and 0 deletions Side-by-side Diff

... ... @@ -0,0 +1,2 @@
  1 +/.bundle
  2 +/vendor/cache
... ... @@ -0,0 +1 @@
  1 +system
... ... @@ -0,0 +1,4 @@
  1 +source "http://rubygems.org"
  2 +
  3 +gem "boxen", "0.0.0", # FIX: just during extraction/porting
  4 + :path => File.expand_path("../../boxen", __FILE__)
... ... @@ -0,0 +1,33 @@
  1 +PATH
  2 + remote: /Users/jbarnette/github/boxen
  3 + specs:
  4 + boxen (0.0.0)
  5 + ansi
  6 + json_pure
  7 + octokit
  8 +
  9 +GEM
  10 + remote: http://rubygems.org/
  11 + specs:
  12 + addressable (2.3.2)
  13 + ansi (1.4.3)
  14 + faraday (0.8.4)
  15 + multipart-post (~> 1.1)
  16 + faraday_middleware (0.8.8)
  17 + faraday (>= 0.7.4, < 0.9)
  18 + hashie (1.2.0)
  19 + json_pure (1.7.5)
  20 + multi_json (1.3.6)
  21 + multipart-post (1.1.5)
  22 + octokit (1.15.1)
  23 + addressable (~> 2.2)
  24 + faraday (~> 0.8)
  25 + faraday_middleware (~> 0.8)
  26 + hashie (~> 1.2)
  27 + multi_json (~> 1.3)
  28 +
  29 +PLATFORMS
  30 + ruby
  31 +
  32 +DEPENDENCIES
  33 + boxen (= 0.0.0)!
... ... @@ -0,0 +1 @@
  1 +# Our Boxen
... ... @@ -0,0 +1,19 @@
  1 +#!/bin/sh
  2 +# Make sure all our local dependencies are available.
  3 +
  4 +# FIX: only sudo if gem home isn't writable
  5 +
  6 +(gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) ||
  7 + sudo gem install bundler --no-rdoc --no-ri
  8 +
  9 +# We don't want old config hanging around.
  10 +
  11 +rm -rf .bundle/config
  12 +
  13 +# Export CC to explicitly set the compiler used for cexts.
  14 +
  15 +export CC=gcc
  16 +
  17 +# Bundle install unless we're already up to date.
  18 +
  19 +bundle install --binstubs bin --path .bundle --quiet "$@"