mirror of
https://github.com/puppetlabs/beaker-vmpooler.git
synced 2026-01-26 11:08:40 -05:00
32 lines
827 B
Ruby
Executable file
32 lines
827 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require 'rubygems' unless defined?(Gem)
|
|
require 'beaker-vmpooler'
|
|
|
|
VERSION_STRING =
|
|
"
|
|
_ .--.
|
|
( ` )
|
|
beaker-vmpooler .-' `--,
|
|
_..----.. ( )`-.
|
|
.'_|` _|` _|( .__, )
|
|
/_| _| _| _( (_, .-'
|
|
;| _| _| _| '-'__,--'`--'
|
|
| _| _| _| _| |
|
|
_ || _| _| _| _| %s
|
|
_( `--.\\_| _| _| _|/
|
|
.-' )--,| _| _|.`
|
|
(__, (_ ) )_| _| /
|
|
`-.__.\\ _,--'\\|__|__/
|
|
;____;
|
|
\\YT/
|
|
||
|
|
|\"\"|
|
|
'=='
|
|
"
|
|
|
|
|
|
|
|
puts VERSION_STRING % [Beaker::DSL::Helpers::Vmpooler::Version::STRING]
|
|
|
|
exit 0
|
|
|