Commit e7885ed5a41a9ed96bd58a7b21a35437bc19e9a8

Authored by John Barnette
1 parent 3cde3fa60f

Update for Boxen 0.1.0 development

Showing 6 changed files with 26 additions and 22 deletions Side-by-side Diff

1 1 source "http://rubygems.org"
2 2  
3   -gem "boxen", "~> 0.0"
4   -gem "librarian-puppet", "~> 0.9"
  3 +gem "boxen", "~> 0.1", :git => "https://github.com/boxen/boxen"
1   -GEM
2   - remote: http://rubygems.org/
  1 +GIT
  2 + remote: https://github.com/boxen/boxen
  3 + revision: 8bde53257faeeb444987a251ada9e40f5d927168
3 4 specs:
4   - addressable (2.3.2)
5   - ansi (1.4.3)
6   - boxen (0.0.0)
  5 + boxen (0.1.0)
7 6 ansi (~> 1.4)
8 7 highline (~> 1.6)
9 8 json_pure (~> 1.7)
  9 + librarian-puppet (~> 0.9)
10 10 octokit (~> 1.15)
11 11 puppet (~> 3.0)
  12 +
  13 +GEM
  14 + remote: http://rubygems.org/
  15 + specs:
  16 + addressable (2.3.2)
  17 + ansi (1.4.3)
12 18 facter (1.6.12)
13 19 faraday (0.8.4)
14 20 multipart-post (~> 1.1)
... ... @@ -41,6 +47,5 @@
41 47 ruby
42 48  
43 49 DEPENDENCIES
44   - boxen (~> 0.0)
45   - librarian-puppet (~> 0.9)
  50 + boxen (~> 0.1)!
1 1 # This file manages Puppet module dependencies.
2 2 #
3   -# It works a lot like Bundler. We provide some core modules by default.
4   -# This ensures at least the ability to construct a basic environment.
  3 +# It works a lot like Bundler. We provide some core modules by
  4 +# default. This ensures at least the ability to construct a basic
  5 +# environment.
5 6  
6   -# Includes many of our custom types and providers, as well as global config.
7   -# Required.
8   -#mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
  7 +# Includes many of our custom types and providers, as well as global
  8 +# config. Required.
  9 +
  10 +mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
9 11  
10 12 # Core modules for a basic development environment.
11 13 # You can replace some/most of those if you want, but it's not recommended.
  1 +GITHUBTARBALL
  2 + remote: boxen/puppet-boxen
  3 + specs:
  4 + boxen (0.0.1.1)
  5 +
1 6 DEPENDENCIES
  7 + boxen (= 0.0.1.1)
... ... @@ -20,8 +20,4 @@
20 20 # Bundle install unless we're already up to date.
21 21  
22 22 bundle install --binstubs bin --path .bundle --quiet "$@"
23   -
24   -# Install all our Puppet dependencies.
25   -
26   -bin/librarian-puppet install --path=shared
... ... @@ -23,10 +23,6 @@
23 23  
24 24 Dir.chdir Pathname.new(__FILE__).realpath + "../.."
25 25  
26   -# FIX: temporarily set BOXEN_HOME to `./tmp/home` during porting.
27   -
28   -ENV["BOXEN_HOME"] = File.expand_path("tmp/home")
29   -
30 26 # Auto-update code. This is done as early as possible so that changes
31 27 # to boxen support code or dependencies can be grabbed.
32 28