1
0
Fork 0

Update for Boxen 0.1.0 development

This commit is contained in:
John Barnette 2012-10-03 13:47:13 -07:00
parent 3cde3fa60f
commit e7885ed5a4
6 changed files with 28 additions and 24 deletions

View File

@ -1,4 +1,3 @@
source "http://rubygems.org"
gem "boxen", "~> 0.0"
gem "librarian-puppet", "~> 0.9"
gem "boxen", "~> 0.1", :git => "https://github.com/boxen/boxen"

View File

@ -1,14 +1,20 @@
GIT
remote: https://github.com/boxen/boxen
revision: 8bde53257faeeb444987a251ada9e40f5d927168
specs:
boxen (0.1.0)
ansi (~> 1.4)
highline (~> 1.6)
json_pure (~> 1.7)
librarian-puppet (~> 0.9)
octokit (~> 1.15)
puppet (~> 3.0)
GEM
remote: http://rubygems.org/
specs:
addressable (2.3.2)
ansi (1.4.3)
boxen (0.0.0)
ansi (~> 1.4)
highline (~> 1.6)
json_pure (~> 1.7)
octokit (~> 1.15)
puppet (~> 3.0)
facter (1.6.12)
faraday (0.8.4)
multipart-post (~> 1.1)
@ -41,5 +47,4 @@ PLATFORMS
ruby
DEPENDENCIES
boxen (~> 0.0)
librarian-puppet (~> 0.9)
boxen (~> 0.1)!

View File

@ -1,11 +1,13 @@
# This file manages Puppet module dependencies.
#
# It works a lot like Bundler. We provide some core modules by default.
# This ensures at least the ability to construct a basic environment.
# It works a lot like Bundler. We provide some core modules by
# default. This ensures at least the ability to construct a basic
# environment.
# Includes many of our custom types and providers, as well as global config.
# Required.
#mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
# Includes many of our custom types and providers, as well as global
# config. Required.
mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
# Core modules for a basic development environment.
# You can replace some/most of those if you want, but it's not recommended.

View File

@ -1,2 +1,8 @@
DEPENDENCIES
GITHUBTARBALL
remote: boxen/puppet-boxen
specs:
boxen (0.0.1.1)
DEPENDENCIES
boxen (= 0.0.1.1)

View File

@ -20,7 +20,3 @@ export CC=gcc
# Bundle install unless we're already up to date.
bundle install --binstubs bin --path .bundle --quiet "$@"
# Install all our Puppet dependencies.
bin/librarian-puppet install --path=shared

View File

@ -23,10 +23,6 @@ at_exit { myself.flock File::LOCK_UN }
Dir.chdir Pathname.new(__FILE__).realpath + "../.."
# FIX: temporarily set BOXEN_HOME to `./tmp/home` during porting.
ENV["BOXEN_HOME"] = File.expand_path("tmp/home")
# Auto-update code. This is done as early as possible so that changes
# to boxen support code or dependencies can be grabbed.