summaryrefslogtreecommitdiffhomepage
path: root/tasks/mruby_build.rake
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-01-23 23:44:57 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-01-23 23:44:57 -0800
commitc00cebe233ec5a9766a1e00cdb2fa843383a2a4f (patch)
tree9bd2681c47d879ae928ae596e4dc8c9b09b9e537 /tasks/mruby_build.rake
parentcc967ebfb6977c7ff39d5172719da5cebe2b9667 (diff)
parentb7805a3e05e40a225a4f91770a8447fbf31eb059 (diff)
downloadmruby-c00cebe233ec5a9766a1e00cdb2fa843383a2a4f.tar.gz
mruby-c00cebe233ec5a9766a1e00cdb2fa843383a2a4f.zip
Merge pull request #778 from mattn/gemlist
Listing gems vertically
Diffstat (limited to 'tasks/mruby_build.rake')
-rw-r--r--tasks/mruby_build.rake7
1 files changed, 6 insertions, 1 deletions
diff --git a/tasks/mruby_build.rake b/tasks/mruby_build.rake
index 08c0a5a05..a454181a2 100644
--- a/tasks/mruby_build.rake
+++ b/tasks/mruby_build.rake
@@ -152,7 +152,12 @@ module MRuby
puts " Config Name: #{@name}"
puts " Output Directory: #{self.build_dir}"
puts " Binaries: #{@bins.join(', ')}" unless @bins.empty?
- puts " Included Gems: #{@gems.map{|g| g.name }.join(', ')}" unless @gems.empty?
+ unless @gems.empty?
+ puts " Included Gems:"
+ @gems.map{|g| g.name }.each do |name|
+ puts " #{name}"
+ end
+ end
puts "================================================"
puts
end