boston-ruby 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/boston-ruby.rb +1 -1
- data/lib/boston-ruby/mailing_list.rb +1 -1
- metadata +1 -1
data/lib/boston-ruby.rb
CHANGED
@@ -38,7 +38,7 @@ threads.to_a.reverse.each do |uid, thread|
|
|
38
38
|
|
39
39
|
longest_name_length = thread[:posts].reduce(0) {|max, post| [max, post[:author].length].max}
|
40
40
|
|
41
|
-
thread[:posts].each do |post|
|
41
|
+
thread[:posts].reverse.each do |post|
|
42
42
|
|
43
43
|
# turn links into markdown-esque text
|
44
44
|
html = Nokogiri::HTML(post[:summary])
|