mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
CI: list bundled gems in build environment
This commit is contained in:
parent
bbb3e5a858
commit
215fa16734
1 changed files with 2 additions and 0 deletions
|
@ -107,6 +107,8 @@ puts "[CruiseControl] #{`mysql --version`}"
|
||||||
puts "[CruiseControl] #{`pg_config --version`}"
|
puts "[CruiseControl] #{`pg_config --version`}"
|
||||||
puts "[CruiseControl] SQLite3: #{`sqlite3 -version`}"
|
puts "[CruiseControl] SQLite3: #{`sqlite3 -version`}"
|
||||||
`gem env`.each_line {|line| print "[CruiseControl] #{line}"}
|
`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:"
|
puts "[CruiseControl] Local gems:"
|
||||||
`gem list`.each_line {|line| print "[CruiseControl] #{line}"}
|
`gem list`.each_line {|line| print "[CruiseControl] #{line}"}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue