Bump to latest gems and modules

This commit is contained in:
Will Farrington 2013-02-05 15:20:23 -08:00
parent f1700e913a
commit 1782dc6fea
43 changed files with 68 additions and 56 deletions

View file

@ -1,6 +1,6 @@
source "http://rubygems.org" source "http://rubygems.org"
gem "boxen", "~> 0.5" gem "boxen", "~> 0.7"
group :development do group :development do
gem "aws-sdk" gem "aws-sdk"

View file

@ -3,12 +3,11 @@ GEM
specs: specs:
addressable (2.3.2) addressable (2.3.2)
ansi (1.4.3) ansi (1.4.3)
aws-sdk (1.7.1) aws-sdk (1.8.1.2)
httparty (~> 0.7)
json (~> 1.4) json (~> 1.4)
nokogiri (>= 1.4.4) nokogiri (>= 1.4.4)
uuidtools (~> 2.1) uuidtools (~> 2.1)
boxen (0.5.2) boxen (0.7.1)
ansi (~> 1.4) ansi (~> 1.4)
hiera (~> 1.0.0) hiera (~> 1.0.0)
highline (~> 1.6) highline (~> 1.6)
@ -16,37 +15,35 @@ GEM
librarian-puppet (~> 0.9) librarian-puppet (~> 0.9)
octokit (~> 1.15) octokit (~> 1.15)
puppet (~> 3.0) puppet (~> 3.0)
facter (1.6.16) facter (1.6.17)
faraday (0.8.4) faraday (0.8.5)
multipart-post (~> 1.1) multipart-post (~> 1.1)
faraday_middleware (0.9.0) faraday_middleware (0.9.0)
faraday (>= 0.7.4, < 0.9) faraday (>= 0.7.4, < 0.9)
hashie (1.2.0) hashie (1.2.0)
hiera (1.0.0) hiera (1.0.0)
highline (1.6.15) highline (1.6.15)
httparty (0.9.0) json (1.7.6)
multi_json (~> 1.0) json_pure (1.7.6)
multi_xml
json (1.7.5)
json_pure (1.7.5)
librarian-puppet (0.9.7) librarian-puppet (0.9.7)
json json
puppet puppet
thor (~> 0.15) thor (~> 0.15)
multi_json (1.4.0) multi_json (1.5.0)
multi_xml (0.5.1)
multipart-post (1.1.5) multipart-post (1.1.5)
nokogiri (1.5.5) netrc (0.7.7)
octokit (1.19.0) nokogiri (1.5.6)
octokit (1.22.0)
addressable (~> 2.2) addressable (~> 2.2)
faraday (~> 0.8) faraday (~> 0.8)
faraday_middleware (~> 0.9) faraday_middleware (~> 0.9)
hashie (~> 1.2) hashie (~> 1.2)
multi_json (~> 1.3) multi_json (~> 1.3)
puppet (3.0.1) netrc (~> 0.7.7)
facter (~> 1.6.11) puppet (3.1.0)
hiera (~> 1.0.0) facter (~> 1.6)
thor (0.16.0) hiera (~> 1.0)
thor (0.17.0)
uuidtools (2.1.3) uuidtools (2.1.3)
PLATFORMS PLATFORMS
@ -54,4 +51,4 @@ PLATFORMS
DEPENDENCIES DEPENDENCIES
aws-sdk aws-sdk
boxen (~> 0.5) boxen (~> 0.7)

View file

@ -1,27 +1,36 @@
# This file manages Puppet module dependencies.
#
# It works a lot like Bundler. We provide some core modules by # It works a lot like Bundler. We provide some core modules by
# default. This ensures at least the ability to construct a basic # default. This ensures at least the ability to construct a basic
# environment. # environment.
def github(name, version, options = nil)
options ||= {}
options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo]
end
# Core modules for a basic development environment. You can replace
# some/most of those if you want, but it's not recommended.
# Includes many of our custom types and providers, as well as global # Includes many of our custom types and providers, as well as global
# config. Required. # config. Required.
# Core modules for a basic development environment. github "boxen", "0.2.3"
# You can replace some/most of those if you want, but it's not recommended.
mod "boxen", "0.1.8", :github_tarball => "boxen/puppet-boxen" # Core modules for a basic development environment. You can replace
mod "dnsmasq", "0.0.1", :github_tarball => "boxen/puppet-dnsmasq" # some/most of these if you want, but it's not recommended.
mod "git", "0.0.3", :github_tarball => "boxen/puppet-git"
mod "hub", "0.0.1", :github_tarball => "boxen/puppet-hub"
mod "homebrew", "0.0.17", :github_tarball => "boxen/puppet-homebrew"
mod "inifile", "0.0.1", :github_tarball => "boxen/puppet-inifile"
mod "nginx", "0.0.2", :github_tarball => "boxen/puppet-nginx"
mod "nodejs", "0.0.2", :github_tarball => "boxen/puppet-nodejs"
mod "nvm", "0.0.5", :github_tarball => "boxen/puppet-nvm"
mod "ruby", "0.4.0", :github_tarball => "boxen/puppet-ruby"
mod "stdlib", "3.0.0", :github_tarball => "puppetlabs/puppetlabs-stdlib"
mod "sudo", "0.0.1", :github_tarball => "boxen/puppet-sudo"
# Add your custom modules here. github "dnsmasq", "0.2.1"
# There are tons available at https://github.com/boxen. github "gcc", "0.0.2"
github "git", "0.1.0"
github "homebrew", "0.3.2"
github "hub", "0.0.1"
github "inifile", "0.9.0", :repo => "cprice-puppet/puppetlabs-inifile"
github "nginx", "0.2.1"
github "nodejs", "0.0.2"
github "nvm", "0.0.5"
github "ruby", "0.4.2"
github "stdlib", "3.0.0", :repo => "puppetlabs/puppetlabs-stdlib"
github "sudo", "0.0.1"
# Optional/custom modules. There are tons available at
# https://github.com/boxen.

View file

@ -1,37 +1,37 @@
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-boxen remote: boxen/puppet-boxen
specs: specs:
boxen (0.1.8) boxen (0.2.3)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-dnsmasq remote: boxen/puppet-dnsmasq
specs: specs:
dnsmasq (0.0.1) dnsmasq (0.2.1)
GITHUBTARBALL
remote: boxen/puppet-gcc
specs:
gcc (0.0.2)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-git remote: boxen/puppet-git
specs: specs:
git (0.0.3) git (0.1.0)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-homebrew remote: boxen/puppet-homebrew
specs: specs:
homebrew (0.0.17) homebrew (0.3.2)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-hub remote: boxen/puppet-hub
specs: specs:
hub (0.0.1) hub (0.0.1)
GITHUBTARBALL
remote: boxen/puppet-inifile
specs:
inifile (0.0.1)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-nginx remote: boxen/puppet-nginx
specs: specs:
nginx (0.0.2) nginx (0.2.1)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-nodejs remote: boxen/puppet-nodejs
@ -46,29 +46,35 @@ GITHUBTARBALL
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-ruby remote: boxen/puppet-ruby
specs: specs:
ruby (0.4.0) ruby (0.4.2)
GITHUBTARBALL GITHUBTARBALL
remote: boxen/puppet-sudo remote: boxen/puppet-sudo
specs: specs:
sudo (0.0.1) sudo (0.0.1)
GITHUBTARBALL
remote: cprice-puppet/puppetlabs-inifile
specs:
inifile (0.9.0)
GITHUBTARBALL GITHUBTARBALL
remote: puppetlabs/puppetlabs-stdlib remote: puppetlabs/puppetlabs-stdlib
specs: specs:
stdlib (3.0.0) stdlib (3.0.0)
DEPENDENCIES DEPENDENCIES
boxen (= 0.1.8) boxen (= 0.2.3)
dnsmasq (= 0.0.1) dnsmasq (= 0.2.1)
git (= 0.0.3) gcc (= 0.0.2)
homebrew (= 0.0.17) git (= 0.1.0)
homebrew (= 0.3.2)
hub (= 0.0.1) hub (= 0.0.1)
inifile (= 0.0.1) inifile (= 0.9.0)
nginx (= 0.0.2) nginx (= 0.2.1)
nodejs (= 0.0.2) nodejs (= 0.0.2)
nvm (= 0.0.5) nvm (= 0.0.5)
ruby (= 0.4.0) ruby (= 0.4.2)
stdlib (= 3.0.0) stdlib (= 3.0.0)
sudo (= 0.0.1) sudo (= 0.0.1)

Binary file not shown.

BIN
vendor/cache/aws-sdk-1.8.1.2.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/boxen-0.7.1.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/facter-1.6.17.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/faraday-0.8.5.gem vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/json-1.7.6.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/json_pure-1.7.6.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/multi_json-1.5.0.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/netrc-0.7.7.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/nokogiri-1.5.6.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/octokit-1.22.0.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/puppet-3.1.0.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/thor-0.17.0.gem vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.