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,10 +13,12 @@ module Pod ...@@ -13,10 +13,12 @@ module Pod
end end
def run def run
Source.search_by_name('', false).each do |set| Source.all.each do |source|
puts "==> #{set.name} (#{set.versions.reverse.join(", ")})" source.pod_sets.each do |set|
puts " #{set.specification.summary.strip}" puts "==> #{set.name} (#{set.versions.reverse.join(", ")})"
puts puts " #{set.specification.summary.strip}"
puts
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