Initial commit

This commit is contained in:
John Barnette 2012-10-02 11:43:59 -07:00
commit 9d3e514b92
6 changed files with 60 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/.bundle
/vendor/cache

1
.rbenv-version Normal file
View file

@ -0,0 +1 @@
system

4
Gemfile Normal file
View file

@ -0,0 +1,4 @@
source "http://rubygems.org"
gem "boxen", "0.0.0", # FIX: just during extraction/porting
:path => File.expand_path("../../boxen", __FILE__)

33
Gemfile.lock Normal file
View file

@ -0,0 +1,33 @@
PATH
remote: /Users/jbarnette/github/boxen
specs:
boxen (0.0.0)
ansi
json_pure
octokit
GEM
remote: http://rubygems.org/
specs:
addressable (2.3.2)
ansi (1.4.3)
faraday (0.8.4)
multipart-post (~> 1.1)
faraday_middleware (0.8.8)
faraday (>= 0.7.4, < 0.9)
hashie (1.2.0)
json_pure (1.7.5)
multi_json (1.3.6)
multipart-post (1.1.5)
octokit (1.15.1)
addressable (~> 2.2)
faraday (~> 0.8)
faraday_middleware (~> 0.8)
hashie (~> 1.2)
multi_json (~> 1.3)
PLATFORMS
ruby
DEPENDENCIES
boxen (= 0.0.0)!

1
README.md Normal file
View file

@ -0,0 +1 @@
# Our Boxen

19
script/bootstrap Executable file
View file

@ -0,0 +1,19 @@
#!/bin/sh
# Make sure all our local dependencies are available.
# FIX: only sudo if gem home isn't writable
(gem spec bundler -v '~> 1.2.0' > /dev/null 2>&1) ||
sudo gem install bundler --no-rdoc --no-ri
# We don't want old config hanging around.
rm -rf .bundle/config
# Export CC to explicitly set the compiler used for cexts.
export CC=gcc
# Bundle install unless we're already up to date.
bundle install --binstubs bin --path .bundle --quiet "$@"