Commit a8c7f085 authored by Chris Eidhof's avatar Chris Eidhof

Removed search and iterate over each source and corresponding pod_set.

Thanks to @alloy
parent 8c8c6de9
...@@ -13,7 +13,8 @@ module Pod ...@@ -13,7 +13,8 @@ module Pod
end end
def run def run
Source.search_by_name('', false).each do |set| Source.all.each do |source|
source.pod_sets.each do |set|
puts "==> #{set.name} (#{set.versions.reverse.join(", ")})" puts "==> #{set.name} (#{set.versions.reverse.join(", ")})"
puts " #{set.specification.summary.strip}" puts " #{set.specification.summary.strip}"
puts puts
...@@ -21,4 +22,5 @@ module Pod ...@@ -21,4 +22,5 @@ module Pod
end end
end end
end end
end
end 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