Commit c00cebe2 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #778 from mattn/gemlist

Listing gems vertically
parents cc967ebf b7805a3e
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment