Bump to latest gems and modules
This commit is contained in:
parent
f1700e913a
commit
1782dc6fea
43 changed files with 68 additions and 56 deletions
2
Gemfile
2
Gemfile
|
@ -1,6 +1,6 @@
|
|||
source "http://rubygems.org"
|
||||
|
||||
gem "boxen", "~> 0.5"
|
||||
gem "boxen", "~> 0.7"
|
||||
|
||||
group :development do
|
||||
gem "aws-sdk"
|
||||
|
|
35
Gemfile.lock
35
Gemfile.lock
|
@ -3,12 +3,11 @@ GEM
|
|||
specs:
|
||||
addressable (2.3.2)
|
||||
ansi (1.4.3)
|
||||
aws-sdk (1.7.1)
|
||||
httparty (~> 0.7)
|
||||
aws-sdk (1.8.1.2)
|
||||
json (~> 1.4)
|
||||
nokogiri (>= 1.4.4)
|
||||
uuidtools (~> 2.1)
|
||||
boxen (0.5.2)
|
||||
boxen (0.7.1)
|
||||
ansi (~> 1.4)
|
||||
hiera (~> 1.0.0)
|
||||
highline (~> 1.6)
|
||||
|
@ -16,37 +15,35 @@ GEM
|
|||
librarian-puppet (~> 0.9)
|
||||
octokit (~> 1.15)
|
||||
puppet (~> 3.0)
|
||||
facter (1.6.16)
|
||||
faraday (0.8.4)
|
||||
facter (1.6.17)
|
||||
faraday (0.8.5)
|
||||
multipart-post (~> 1.1)
|
||||
faraday_middleware (0.9.0)
|
||||
faraday (>= 0.7.4, < 0.9)
|
||||
hashie (1.2.0)
|
||||
hiera (1.0.0)
|
||||
highline (1.6.15)
|
||||
httparty (0.9.0)
|
||||
multi_json (~> 1.0)
|
||||
multi_xml
|
||||
json (1.7.5)
|
||||
json_pure (1.7.5)
|
||||
json (1.7.6)
|
||||
json_pure (1.7.6)
|
||||
librarian-puppet (0.9.7)
|
||||
json
|
||||
puppet
|
||||
thor (~> 0.15)
|
||||
multi_json (1.4.0)
|
||||
multi_xml (0.5.1)
|
||||
multi_json (1.5.0)
|
||||
multipart-post (1.1.5)
|
||||
nokogiri (1.5.5)
|
||||
octokit (1.19.0)
|
||||
netrc (0.7.7)
|
||||
nokogiri (1.5.6)
|
||||
octokit (1.22.0)
|
||||
addressable (~> 2.2)
|
||||
faraday (~> 0.8)
|
||||
faraday_middleware (~> 0.9)
|
||||
hashie (~> 1.2)
|
||||
multi_json (~> 1.3)
|
||||
puppet (3.0.1)
|
||||
facter (~> 1.6.11)
|
||||
hiera (~> 1.0.0)
|
||||
thor (0.16.0)
|
||||
netrc (~> 0.7.7)
|
||||
puppet (3.1.0)
|
||||
facter (~> 1.6)
|
||||
hiera (~> 1.0)
|
||||
thor (0.17.0)
|
||||
uuidtools (2.1.3)
|
||||
|
||||
PLATFORMS
|
||||
|
@ -54,4 +51,4 @@ PLATFORMS
|
|||
|
||||
DEPENDENCIES
|
||||
aws-sdk
|
||||
boxen (~> 0.5)
|
||||
boxen (~> 0.7)
|
||||
|
|
45
Puppetfile
45
Puppetfile
|
@ -1,27 +1,36 @@
|
|||
# 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.
|
||||
|
||||
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
|
||||
# config. Required.
|
||||
|
||||
# Core modules for a basic development environment.
|
||||
# You can replace some/most of those if you want, but it's not recommended.
|
||||
github "boxen", "0.2.3"
|
||||
|
||||
mod "boxen", "0.1.8", :github_tarball => "boxen/puppet-boxen"
|
||||
mod "dnsmasq", "0.0.1", :github_tarball => "boxen/puppet-dnsmasq"
|
||||
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"
|
||||
# Core modules for a basic development environment. You can replace
|
||||
# some/most of these if you want, but it's not recommended.
|
||||
|
||||
# Add your custom modules here.
|
||||
# There are tons available at https://github.com/boxen.
|
||||
github "dnsmasq", "0.2.1"
|
||||
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.
|
||||
|
|
|
@ -1,37 +1,37 @@
|
|||
GITHUBTARBALL
|
||||
remote: boxen/puppet-boxen
|
||||
specs:
|
||||
boxen (0.1.8)
|
||||
boxen (0.2.3)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-dnsmasq
|
||||
specs:
|
||||
dnsmasq (0.0.1)
|
||||
dnsmasq (0.2.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-gcc
|
||||
specs:
|
||||
gcc (0.0.2)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-git
|
||||
specs:
|
||||
git (0.0.3)
|
||||
git (0.1.0)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-homebrew
|
||||
specs:
|
||||
homebrew (0.0.17)
|
||||
homebrew (0.3.2)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-hub
|
||||
specs:
|
||||
hub (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-inifile
|
||||
specs:
|
||||
inifile (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-nginx
|
||||
specs:
|
||||
nginx (0.0.2)
|
||||
nginx (0.2.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-nodejs
|
||||
|
@ -46,29 +46,35 @@ GITHUBTARBALL
|
|||
GITHUBTARBALL
|
||||
remote: boxen/puppet-ruby
|
||||
specs:
|
||||
ruby (0.4.0)
|
||||
ruby (0.4.2)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-sudo
|
||||
specs:
|
||||
sudo (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: cprice-puppet/puppetlabs-inifile
|
||||
specs:
|
||||
inifile (0.9.0)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: puppetlabs/puppetlabs-stdlib
|
||||
specs:
|
||||
stdlib (3.0.0)
|
||||
|
||||
DEPENDENCIES
|
||||
boxen (= 0.1.8)
|
||||
dnsmasq (= 0.0.1)
|
||||
git (= 0.0.3)
|
||||
homebrew (= 0.0.17)
|
||||
boxen (= 0.2.3)
|
||||
dnsmasq (= 0.2.1)
|
||||
gcc (= 0.0.2)
|
||||
git (= 0.1.0)
|
||||
homebrew (= 0.3.2)
|
||||
hub (= 0.0.1)
|
||||
inifile (= 0.0.1)
|
||||
nginx (= 0.0.2)
|
||||
inifile (= 0.9.0)
|
||||
nginx (= 0.2.1)
|
||||
nodejs (= 0.0.2)
|
||||
nvm (= 0.0.5)
|
||||
ruby (= 0.4.0)
|
||||
ruby (= 0.4.2)
|
||||
stdlib (= 3.0.0)
|
||||
sudo (= 0.0.1)
|
||||
|
||||
|
|
BIN
vendor/cache/aws-sdk-1.7.1.gem
vendored
BIN
vendor/cache/aws-sdk-1.7.1.gem
vendored
Binary file not shown.
BIN
vendor/cache/aws-sdk-1.8.1.2.gem
vendored
Normal file
BIN
vendor/cache/aws-sdk-1.8.1.2.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/boxen-0.5.2.gem
vendored
BIN
vendor/cache/boxen-0.5.2.gem
vendored
Binary file not shown.
BIN
vendor/cache/boxen-0.7.1.gem
vendored
Normal file
BIN
vendor/cache/boxen-0.7.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/facter-1.6.16.gem
vendored
BIN
vendor/cache/facter-1.6.16.gem
vendored
Binary file not shown.
BIN
vendor/cache/facter-1.6.17.gem
vendored
Normal file
BIN
vendor/cache/facter-1.6.17.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/faraday-0.8.4.gem
vendored
BIN
vendor/cache/faraday-0.8.4.gem
vendored
Binary file not shown.
BIN
vendor/cache/faraday-0.8.5.gem
vendored
Normal file
BIN
vendor/cache/faraday-0.8.5.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/httparty-0.9.0.gem
vendored
BIN
vendor/cache/httparty-0.9.0.gem
vendored
Binary file not shown.
BIN
vendor/cache/json-1.7.5.gem
vendored
BIN
vendor/cache/json-1.7.5.gem
vendored
Binary file not shown.
BIN
vendor/cache/json-1.7.6.gem
vendored
Normal file
BIN
vendor/cache/json-1.7.6.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/json_pure-1.7.5.gem
vendored
BIN
vendor/cache/json_pure-1.7.5.gem
vendored
Binary file not shown.
BIN
vendor/cache/json_pure-1.7.6.gem
vendored
Normal file
BIN
vendor/cache/json_pure-1.7.6.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/multi_json-1.4.0.gem
vendored
BIN
vendor/cache/multi_json-1.4.0.gem
vendored
Binary file not shown.
BIN
vendor/cache/multi_json-1.5.0.gem
vendored
Normal file
BIN
vendor/cache/multi_json-1.5.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/multi_xml-0.5.1.gem
vendored
BIN
vendor/cache/multi_xml-0.5.1.gem
vendored
Binary file not shown.
BIN
vendor/cache/netrc-0.7.7.gem
vendored
Normal file
BIN
vendor/cache/netrc-0.7.7.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/nokogiri-1.5.5.gem
vendored
BIN
vendor/cache/nokogiri-1.5.5.gem
vendored
Binary file not shown.
BIN
vendor/cache/nokogiri-1.5.6.gem
vendored
Normal file
BIN
vendor/cache/nokogiri-1.5.6.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/octokit-1.19.0.gem
vendored
BIN
vendor/cache/octokit-1.19.0.gem
vendored
Binary file not shown.
BIN
vendor/cache/octokit-1.22.0.gem
vendored
Normal file
BIN
vendor/cache/octokit-1.22.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/puppet-3.0.1.gem
vendored
BIN
vendor/cache/puppet-3.0.1.gem
vendored
Binary file not shown.
BIN
vendor/cache/puppet-3.1.0.gem
vendored
Normal file
BIN
vendor/cache/puppet-3.1.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/thor-0.16.0.gem
vendored
BIN
vendor/cache/thor-0.16.0.gem
vendored
Binary file not shown.
BIN
vendor/cache/thor-0.17.0.gem
vendored
Normal file
BIN
vendor/cache/thor-0.17.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-boxen-0.1.8.tar.gz
vendored
BIN
vendor/puppet/cache/boxen-puppet-boxen-0.1.8.tar.gz
vendored
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-boxen-0.2.3.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/boxen-puppet-boxen-0.2.3.tar.gz
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-dnsmasq-0.2.1.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/boxen-puppet-dnsmasq-0.2.1.tar.gz
vendored
Normal file
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-gcc-0.0.2.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/boxen-puppet-gcc-0.0.2.tar.gz
vendored
Normal file
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-git-0.0.3.tar.gz
vendored
BIN
vendor/puppet/cache/boxen-puppet-git-0.0.3.tar.gz
vendored
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-git-0.1.0.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/boxen-puppet-git-0.1.0.tar.gz
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-homebrew-0.3.2.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/boxen-puppet-homebrew-0.3.2.tar.gz
vendored
Normal file
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-nginx-0.0.2.tar.gz
vendored
BIN
vendor/puppet/cache/boxen-puppet-nginx-0.0.2.tar.gz
vendored
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-nginx-0.2.1.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/boxen-puppet-nginx-0.2.1.tar.gz
vendored
Normal file
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-ruby-0.4.0.tar.gz
vendored
BIN
vendor/puppet/cache/boxen-puppet-ruby-0.4.0.tar.gz
vendored
Binary file not shown.
BIN
vendor/puppet/cache/boxen-puppet-ruby-0.4.2.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/boxen-puppet-ruby-0.4.2.tar.gz
vendored
Normal file
Binary file not shown.
BIN
vendor/puppet/cache/cprice-puppet-puppetlabs-inifile-0.9.0.tar.gz
vendored
Normal file
BIN
vendor/puppet/cache/cprice-puppet-puppetlabs-inifile-0.9.0.tar.gz
vendored
Normal file
Binary file not shown.
Loading…
Reference in a new issue