CI: list bundled gems in build environment

This commit is contained in:
Jeremy Kemper 2009-11-10 16:54:15 -08:00
parent bbb3e5a858
commit 215fa16734
1 changed files with 2 additions and 0 deletions

View File

@ -107,6 +107,8 @@ puts "[CruiseControl] #{`mysql --version`}"
puts "[CruiseControl] #{`pg_config --version`}"
puts "[CruiseControl] SQLite3: #{`sqlite3 -version`}"
`gem env`.each_line {|line| print "[CruiseControl] #{line}"}
puts "[CruiseControl] Bundled gems:"
`gem bundle --list`.each_line {|line| print "[CruiseControl] #{line}"}
puts "[CruiseControl] Local gems:"
`gem list`.each_line {|line| print "[CruiseControl] #{line}"}