Update for Boxen 0.1.0 development
This commit is contained in:
parent
3cde3fa60f
commit
e7885ed5a4
6 changed files with 28 additions and 24 deletions
3
Gemfile
3
Gemfile
|
@ -1,4 +1,3 @@
|
||||||
source "http://rubygems.org"
|
source "http://rubygems.org"
|
||||||
|
|
||||||
gem "boxen", "~> 0.0"
|
gem "boxen", "~> 0.1", :git => "https://github.com/boxen/boxen"
|
||||||
gem "librarian-puppet", "~> 0.9"
|
|
||||||
|
|
21
Gemfile.lock
21
Gemfile.lock
|
@ -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
|
GEM
|
||||||
remote: http://rubygems.org/
|
remote: http://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
addressable (2.3.2)
|
addressable (2.3.2)
|
||||||
ansi (1.4.3)
|
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)
|
facter (1.6.12)
|
||||||
faraday (0.8.4)
|
faraday (0.8.4)
|
||||||
multipart-post (~> 1.1)
|
multipart-post (~> 1.1)
|
||||||
|
@ -41,5 +47,4 @@ PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
boxen (~> 0.0)
|
boxen (~> 0.1)!
|
||||||
librarian-puppet (~> 0.9)
|
|
||||||
|
|
12
Puppetfile
12
Puppetfile
|
@ -1,11 +1,13 @@
|
||||||
# This file manages Puppet module dependencies.
|
# This file manages Puppet module dependencies.
|
||||||
#
|
#
|
||||||
# It works a lot like Bundler. We provide some core modules by default.
|
# It works a lot like Bundler. We provide some core modules by
|
||||||
# This ensures at least the ability to construct a basic environment.
|
# 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.
|
# Includes many of our custom types and providers, as well as global
|
||||||
# Required.
|
# config. Required.
|
||||||
#mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
|
|
||||||
|
mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
|
||||||
|
|
||||||
# Core modules for a basic development environment.
|
# Core modules for a basic development environment.
|
||||||
# You can replace some/most of those if you want, but it's not recommended.
|
# You can replace some/most of those if you want, but it's not recommended.
|
||||||
|
|
|
@ -1,2 +1,8 @@
|
||||||
DEPENDENCIES
|
GITHUBTARBALL
|
||||||
|
remote: boxen/puppet-boxen
|
||||||
|
specs:
|
||||||
|
boxen (0.0.1.1)
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
boxen (= 0.0.1.1)
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,3 @@ export CC=gcc
|
||||||
# Bundle install unless we're already up to date.
|
# Bundle install unless we're already up to date.
|
||||||
|
|
||||||
bundle install --binstubs bin --path .bundle --quiet "$@"
|
bundle install --binstubs bin --path .bundle --quiet "$@"
|
||||||
|
|
||||||
# Install all our Puppet dependencies.
|
|
||||||
|
|
||||||
bin/librarian-puppet install --path=shared
|
|
||||||
|
|
|
@ -23,10 +23,6 @@ at_exit { myself.flock File::LOCK_UN }
|
||||||
|
|
||||||
Dir.chdir Pathname.new(__FILE__).realpath + "../.."
|
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
|
# Auto-update code. This is done as early as possible so that changes
|
||||||
# to boxen support code or dependencies can be grabbed.
|
# to boxen support code or dependencies can be grabbed.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue