Skip to content

Commit

Permalink
Listing gems vertically
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Jan 24, 2013
1 parent 65623d7 commit b7805a3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tasks/mruby_build.rake
Expand Up @@ -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
Expand Down

0 comments on commit b7805a3

Please sign in to comment.