dash-bees 0.30 → 0.31

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 2010-09-29 v0.31 Added title to all activities.
2
+
1
3
  2010-09-28 v0.30 Fixed Basic Auth bug.
2
4
 
3
5
  2010-09-28 v0.29 Fixed bug when refreshing feed.
@@ -78,6 +78,7 @@ The callback methods are:
78
78
  Activities have the following attributes:
79
79
 
80
80
  * uid -- Unique identifier (within the scope of this source). Optional.
81
+ * title -- Short title (for feed, notificatio, etc).
81
82
  * html -- HTML contents of the activity.
82
83
  * text -- Text contents of the activity (alternative to html attribute).
83
84
  * url -- Points back to the original resource. Optional.
@@ -1,5 +1,5 @@
1
1
  module DashFu
2
2
  module Bee
3
- VERSION = "0.30"
3
+ VERSION = "0.31"
4
4
  end
5
5
  end
@@ -33,13 +33,14 @@ module DashFu::Bee
33
33
  new_ones.each do |tweet|
34
34
  screen_name, id = tweet["tweet_from_user"], tweet["tweet_id"]
35
35
  url = "http://twitter.com/#{screen_name}/#{id}"
36
+ title = Nokogiri::HTML.fragment(tweet["tweet_text"]).text
36
37
  html = <<-HTML
37
38
  <a href="#{url}">tweeted</a>:
38
39
  <blockquote>#{tweet["tweet_text"]}</blockquote>
39
40
  HTML
40
41
  person = { fullname: screen_name, identities: %W{twitter.com:#{screen_name}},
41
42
  photo_url: "http://img.tweetimag.es/i/#{screen_name}_n" }
42
- callback.activity! uid: id, url: url, html: html, tags: %w{twitter mention}, public: true,
43
+ callback.activity! uid: id, url: url, title: title, html: html, tags: %w{twitter mention}, public: true,
43
44
  timestamp: Time.parse(tweet["tweet_created_at"]).utc, person: person
44
45
  source["last_tweet_id"] = tweet["tweet_id"]
45
46
  end
@@ -63,7 +63,7 @@ module DashFu::Bee
63
63
  else
64
64
  html = "posted a link <a href=\"#{entry[:url]}\">#{h entry[:title]}</a>"
65
65
  end
66
- callback.activity! entry.slice(:url, :timestamp, :person).merge(uid: entry[:id], html: html)
66
+ callback.activity! entry.slice(:url, :title, :timestamp, :person).merge(uid: entry[:id], html: html)
67
67
  source["updated"] = entry[:timestamp]
68
68
  end
69
69
  else
@@ -130,7 +130,7 @@ module DashFu::Bee
130
130
  end
131
131
 
132
132
  { id: (entry>"id").text,
133
- title: CGI.unescapeHTML((entry>"title").text),
133
+ title: CGI.unescapeHTML((entry>"title").text).strip,
134
134
  url: find_alternate_link(entry, nil, "text/html", "text/xhtml", nil) || find_self_link(entry),
135
135
  content: html,
136
136
  person: person,
@@ -138,7 +138,7 @@ module DashFu::Bee
138
138
  }
139
139
  end
140
140
  return {
141
- title: CGI.unescapeHTML((feed>"title").text),
141
+ title: CGI.unescapeHTML((feed>"title").text).strip,
142
142
  url: find_alternate_link(feed, nil, "text/html", "text/xhtml", nil) || find_self_link(feed),
143
143
  icon: (feed>"icon").text,
144
144
  entries: entries ? entries.compact.reverse : []
@@ -165,7 +165,7 @@ module DashFu::Bee
165
165
  end
166
166
  link = (item>"feedburner:origLink").first || (item>"link").first
167
167
  { id: guid ? guid.text : nil,
168
- title: CGI.unescapeHTML((item>"title").text),
168
+ title: CGI.unescapeHTML((item>"title").text).strip,
169
169
  url: link ? link.text : guid,
170
170
  content: CGI.unescapeHTML((item>"description").text),
171
171
  person: person,
@@ -173,7 +173,7 @@ module DashFu::Bee
173
173
  }
174
174
  end
175
175
  return {
176
- title: CGI.unescapeHTML((channel>"title").text),
176
+ title: CGI.unescapeHTML((channel>"title").text).strip,
177
177
  url: (channel>"link").text,
178
178
  icon: (channel>"image>url").text,
179
179
  entries: entries ? entries.compact.reverse : []
@@ -69,7 +69,8 @@ module DashFu::Bee
69
69
  person = { fullname: committer["name"], identities: Array.wrap(identity), email: committer["email"] }
70
70
  messages = commits.map { |commit| %{<blockquote><a href="#{commit["url"]}">#{commit["id"][0,7]}</a> #{h commit["message"].strip.split(/[\n\r]/).first[0,50]}</blockquote>} }
71
71
  html = %{pushed to #{h source["branch"]} at <a href="http://github.com/#{source["repo"]}">#{h source["repo"]}</a>:\n#{messages.join("\n")}}
72
- callback.activity! uid: first["id"], html: html, url: first["url"], tags: %w{push}, public: auth.nil?,
72
+ title = "#{person[:fullname]} pushed to #{source["branch"]} at #{source["repo"]}"
73
+ callback.activity! uid: first["id"], html: html, title: title, url: first["url"], tags: %w{push}, public: auth.nil?,
73
74
  timestamp: Time.parse(first["committed_date"]).utc, person: person
74
75
  end
75
76
  callback.inc! commits: new_ones.count
@@ -37,11 +37,12 @@ module DashFu::Bee
37
37
  open.reject { |issue| open_ids.include?(issue["number"]) }.reverse.each do |issue|
38
38
  sha = Digest::SHA1.hexdigest([source["repo"], "open", issue["number"], issue["updated_at"]].join(":"))
39
39
  url = "http://github.com/#{source["repo"]}/issues#issue/#{issue["number"]}"
40
+ title = "Opened issue #{issue["number"]} on #{source["repo"]}"
40
41
  html = <<-HTML
41
42
  opened <a href="#{url}">issue #{issue["number"]}</a> on #{source["repo"]}:
42
43
  <blockquote>#{h issue["title"]}</blockquote>
43
44
  HTML
44
- callback.activity! uid: sha, url: url, html: html, tags: %w{issue opened}, public: !auth,
45
+ callback.activity! uid: sha, url: url, title: title, html: html, tags: %w{issue opened}, public: !auth,
45
46
  person: github, timestamp: Time.parse(issue["created_at"]).utc
46
47
  open_ids << issue["number"]
47
48
  end
@@ -65,11 +66,12 @@ opened <a href="#{url}">issue #{issue["number"]}</a> on #{source["repo"]}:
65
66
  closed.reject { |issue| closed_ids.include?(issue["number"]) }.reverse.each do |issue|
66
67
  sha = Digest::SHA1.hexdigest([source["repo"], "closed", issue["number"], issue["updated_at"]].join(":"))
67
68
  url = "http://github.com/#{source["repo"]}/issues#issue/#{issue["number"]}"
69
+ title = "Closed issue #{issue["number"]} on #{source["repo"]}"
68
70
  html = <<-HTML
69
71
  closed <a href="#{url}">issue #{issue["number"]}</a> on #{source["repo"]}:
70
72
  <blockquote>#{h issue["title"]}</blockquote>
71
73
  HTML
72
- callback.activity! uid: sha, url: url, html: html, tags: %w{issue closed}, public: !auth,
74
+ callback.activity! uid: sha, url: url, title: title, html: html, tags: %w{issue closed}, public: !auth,
73
75
  person: github, timestamp: Time.parse(issue["closed_at"]).utc
74
76
  closed_ids << issue["number"]
75
77
  end
@@ -29,10 +29,11 @@ module DashFu::Bee
29
29
  if source["version"]
30
30
  current, latest = Gem::Version.new(source["version"]), Gem::Version.new(json["version"])
31
31
  if latest > current
32
+ title = "Released #{gem_name} version #{latest}"
32
33
  html = "released <a href=\"http://rubygems.org/gems/#{gem_name}/versions/#{latest}\">#{gem_name} version #{latest}</a>."
33
34
  person = { fullname: "RubyGems", identities: "url:http://rubygems.org/", photo_url: ICON_URL }
34
35
  callback.activity! uid: "#{gem_name}-#{latest}", url: "http://rubygems.org/gems/#{gem_name}", public: true,
35
- html: html, tags: %w{release}, person: person
36
+ title: title, html: html, tags: %w{release}, person: person
36
37
  end
37
38
  end
38
39
  source["version"] = json["version"]
@@ -84,6 +84,7 @@ describe "Backtweets" do
84
84
  end
85
85
 
86
86
  it "should capture tweet text" do
87
+ assert_equal "Super awesome http://j.mp/aOrUnsz", activity.title
87
88
  assert_equal <<-HTML, activity.html
88
89
  <a href="http://twitter.com/dude/20959239143">tweeted</a>:
89
90
  <blockquote>Super awesome <a href="http://vanity.labnotes.org/">http://j.mp/aOrUnsz</a></blockquote>
@@ -130,6 +130,10 @@ describe "Feed" do
130
130
  assert_equal "http://example.org/2005/04/02/atom", activity.url
131
131
  end
132
132
 
133
+ it "should capture title" do
134
+ assert_equal "Atom draft-07 snapshot", activity.title
135
+ end
136
+
133
137
  it "should capture title and content" do
134
138
  assert_equal <<-HTML.strip, activity.html
135
139
  posted <a href=\"http://example.org/2005/04/02/atom\">Atom draft-07 snapshot</a>:
@@ -239,6 +243,7 @@ posted <a href=\"\">Atom draft-07 snapshot</a>:
239
243
  end
240
244
 
241
245
  it "should capture title and content" do
246
+ assert_equal "MoistProduction: My Little Pony Anatomical Sculpt", activity.title
242
247
  assert_equal <<-HTML.strip, activity.html
243
248
  posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction: My Little Pony Anatomical Sculpt</a>:
244
249
  <blockquote><img src="http://24.media.tumblr.com/tumblr_l98n9asu3D1qz4byuo1_400.jpg"><br><br><p><a href="http://moistproduction.blogspot.com/2010/09/my-little-pony-anatomical-sculpt.html" target="_blank">MoistProduction: My Little Pony Anatomical Sculpt</a></p></blockquote>
@@ -263,6 +268,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
263
268
  assert_equal "http://xkcd.com/797/", activity.uid
264
269
  assert_equal "http://xkcd.com/797/", activity.url
265
270
  assert_equal Time.utc(2010, 9, 24, 0), activity.timestamp
271
+ assert_equal "debian-main", activity.title
266
272
  assert_includes activity.html, <<-HTML.strip
267
273
  <blockquote><img src="http://imgs.xkcd.com/comics/debian_main.png" title="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES" alt="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES"></blockquote>
268
274
  HTML
@@ -283,6 +289,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
283
289
  assert_equal "http://xkcd.com/797/", activity.uid
284
290
  assert_equal "http://xkcd.com/797/", activity.url
285
291
  assert_equal Time.utc(2010, 9, 24, 4), activity.timestamp
292
+ assert_equal "debian-main", activity.title
286
293
  assert_includes activity.html, <<-HTML.strip
287
294
  <blockquote><img src="http://imgs.xkcd.com/comics/debian_main.png" title="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES" alt="dpkg: error processing package (--purge): subprocess pre-removal script returned error exit 163: OH_GOD_THEYRE_INSIDE_MY_CLOTHES"></blockquote>
288
295
  HTML
@@ -305,6 +312,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
305
312
  assert_equal "http://staff.tumblr.com/post/1161958822", activity.uid
306
313
  assert_equal "http://staff.tumblr.com/post/1161958822", activity.url
307
314
  assert_equal Time.utc(2010, 9, 21, 16, 27, 48), activity.timestamp
315
+ assert_equal "Name SoupLocation Hoboken, NJFirst Post October...", activity.title
308
316
  assert_includes activity.html, "Name SoupLocation Hoboken, NJFirst Post October..."
309
317
  assert_includes activity.html, <<-HTML.strip
310
318
  <blockquote><img src=\"http://30.media.tumblr.com/tumblr_l93ti8ZUme1qz8q0ho1_500.png\"><br><br><p><strong>Name</strong> <a href=\"http://soupsoup.tumblr.com/\" title=\"Soup\">Soup</a><br><strong>Location</strong> Hoboken, NJ<br><strong>First Post</strong> October 2007</p><p>News-and-info-junkie Anthony De Rosa is on a mission to keep the masses informed about news, technology, politics, sports, entertainment, and more. As a one-man mass media machine, it’s easy to imagine that he sits in front of 17 monitors for at least 23 hours a day, constantly scanning the entire internet with vigilance for the latest breaking news. Sadly, I’m told that’s probably not true. In addition to running <em>Soup</em>, Anthony co-founded</p>...</blockquote>
@@ -326,6 +334,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
326
334
  assert_equal "tag:github.com,2008:Post/724", activity.uid
327
335
  assert_equal "http://github.com/blog/724-a-few-words-on-the-recent-outages", activity.url
328
336
  assert_equal Time.utc(2010, 9, 24, 20, 48, 44), activity.timestamp
337
+ assert_equal "A few words on the recent outages", activity.title
329
338
  assert_includes activity.html, "A few words on the recent outages"
330
339
  assert_includes activity.html, <<-HTML.strip
331
340
  <blockquote><p>While we've been working hard to keep ahead of the demand for new file servers to push to and new web servers to keep the angry unicorn at bay, we've sadly neglected a very vital part of our infrastructure: the load balancers.</p><p>Earlier today our active load balancer became starved for resources due to some unfortunate timing, with a higher than normal amount of hits to the site while a rather intensive periodic job was running in the background. This caused the load balancer to start swapping</p>...</blockquote>
@@ -349,6 +358,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
349
358
  assert_equal "http://www.reddit.com/r/ruby/comments/djdtf/reloading_ruby_code/", activity.uid
350
359
  assert_equal "http://www.reddit.com/r/ruby/comments/djdtf/reloading_ruby_code/", activity.url
351
360
  assert_equal Time.utc(2010, 9, 27, 7, 44, 34), activity.timestamp
361
+ assert_equal "Reloading Ruby Code", activity.title
352
362
  assert_includes activity.html, "<a href=\"http://www.reddit.com/r/ruby/comments/djdtf/reloading_ruby_code/\">Reloading Ruby Code</a>"
353
363
  assert_includes activity.html, <<-HTML.strip
354
364
  <blockquote>submitted by <a href="http://www.reddit.com/user/cldwalker"> cldwalker </a> <br><a href="http://rkh.im/2010/08/code-reloading">[link]</a> <a href=\"http://www.reddit.com/r/ruby/comments/djdtf/reloading_ruby_code/\">[1 comment]</a></blockquote>
@@ -370,7 +380,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
370
380
  assert_equal "support.sendgrid.com/forums/220245-sendgrid-status/posts.rss:220245:249904:373239", activity.uid
371
381
  assert_equal "http://support.sendgrid.com/entries/249904-maintenance-alert-september-5-2010-at-2100-pdt", activity.url
372
382
  assert_equal Time.utc(2010, 9, 6, 5, 43, 7), activity.timestamp
373
- assert_includes activity.html, "&quot;Maintenance Alert: September 5, 2010 at 2100 PDT&quot; in SendGrid Status - comment added by Isaac Saldana"
383
+ assert_equal "\"Maintenance Alert: September 5, 2010 at 2100 PDT\" in SendGrid Status - comment added by Isaac Saldana", activity.title
374
384
  assert_includes activity.html, <<-HTML.strip
375
385
  <blockquote><p>All updates are done, everything went smoothly.\40\302\240Thanks for your patience.</p></blockquote>
376
386
  HTML
@@ -393,7 +403,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
393
403
  assert_equal "http://thesummitsf.wordpress.com/?p=670", activity.uid
394
404
  assert_equal "http://thesummitsf.wordpress.com/2010/09/27/it-was-meant-to-be/", activity.url
395
405
  assert_equal Time.utc(2010, 9, 27, 19, 9, 17), activity.timestamp
396
- assert_includes activity.html, "It was meant to be\342\200\246"
406
+ assert_equal "It was meant to be\342\200\246", activity.title
397
407
  assert_includes activity.html, <<-HTML.strip
398
408
  <blockquote>from b-day to business opening and back. the summit is finally open!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thesummitsf.wordpress.com&amp;blog=12364641&amp;post=670&amp;subd=thesummitsf&amp;ref=&amp;feed=1" width="1" height="1"></blockquote>
399
409
  HTML
@@ -416,7 +426,7 @@ posted <a href="http://bytesized.labnotes.org/post/1177612117">MoistProduction:
416
426
  assert_equal "urn:uuid:markmail-egvsf5gk64rpbywi", activity.uid
417
427
  assert_equal "http://markmail.org/message/egvsf5gk64rpbywi?q=list:users", activity.url
418
428
  assert_equal Time.utc(2010, 9, 26, 1, 56, 45), activity.timestamp
419
- assert_includes activity.html, "[ANN] Buildrdeb 1.0.0"
429
+ assert_equal "[ANN] Buildrdeb 1.0.0", activity.title
420
430
  assert_includes activity.html, <<-HTML.strip
421
431
  <blockquote><div xmlns="intentional"><div><table style="border-bottom: 1px solid #ccc; margin-bottom: 10px;"><tbody>\n<tr>\n<th style="text-align: right; font-weight: normal">From:</th><td>Antoine Toulme (anto...@lunar-ocean.com)</td></tr>\n<tr>\n<th style="text-align: right; font-weight: normal">List:</th><td><span xmlns:xhtml="intentional">org.apache.buildr.users</span></td></tr>\n</tbody></table>\n<div><div><p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;">Hi all,</p><p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;"></p><p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;">The new release is a jump from 0.0.3 to 1.0. We pushed for better specs and</p><p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;">Issues and source here:<a href="http://github.com/intalio/package_as_deb">http://github.com/intalio/package_as_deb</a></p><p xml:space="preserve" style="white-space: pre; margin: 0px; padding: 0px;">Thanks,</p><p xml:space="preserve" style=\"white-space: pre; margin: 0px; padding: 0px;">Antoine</p></div></div></div></div></blockquote>
422
432
  HTML
@@ -122,6 +122,10 @@ describe "GitHub Issues" do
122
122
  end
123
123
 
124
124
  it "should capture issue title" do
125
+ assert_equal "Opened issue 21 on assaf/vanity", activity.title
126
+ end
127
+
128
+ it "should capture issue details" do
125
129
  assert_equal <<-HTML, activity.html
126
130
  opened <a href="http://github.com/assaf/vanity/issues#issue/21">issue 21</a> on assaf/vanity:
127
131
  <blockquote>Vanity 1.4.0 seems to have issues with Bundler</blockquote>
@@ -172,6 +176,10 @@ opened <a href="http://github.com/assaf/vanity/issues#issue/21">issue 21</a> on
172
176
  end
173
177
 
174
178
  it "should capture issue title" do
179
+ assert_equal "Closed issue 18 on assaf/vanity", activity.title
180
+ end
181
+
182
+ it "should capture issue details" do
175
183
  assert_equal <<-HTML, activity.html
176
184
  closed <a href="http://github.com/assaf/vanity/issues#issue/18">issue 18</a> on assaf/vanity:
177
185
  <blockquote>Passwords not supported for the Redis config</blockquote>
@@ -128,6 +128,10 @@ describe "GitHub" do
128
128
  assert_equal Time.parse("2010-08-06T00:18:01-07:00 UTC").utc, activity.timestamp
129
129
  end
130
130
 
131
+ it "should capture title" do
132
+ assert_match "Assaf Arkin pushed to master at assaf/vanity", activity.title
133
+ end
134
+
131
135
  it "should capture push" do
132
136
  assert_match %{pushed to master at <a href="http://github.com/assaf/vanity">assaf/vanity</a>:}, activity.html
133
137
  end
@@ -5,7 +5,7 @@ class Activity
5
5
  end
6
6
  end
7
7
 
8
- attr_accessor :uid, :html, :text, :url, :timestamp, :tags, :person, :public
8
+ attr_accessor :uid, :title, :html, :text, :url, :timestamp, :tags, :person, :public
9
9
 
10
10
  def public?
11
11
  !!@public
@@ -107,6 +107,7 @@ describe "RubyGems" do
107
107
  end
108
108
 
109
109
  it "should report release number" do
110
+ assert_equal "Released vanity version 2.1.0", activity.title
110
111
  assert_equal <<-HTML.strip, activity.html
111
112
  released <a href=\"http://rubygems.org/gems/vanity/versions/2.1.0\">vanity version 2.1.0</a>.
112
113
  HTML
@@ -5908,3 +5908,63 @@ Loaded Bee feed: DashFu::Bee::Feed
5908
5908
  Loaded Bee github: DashFu::Bee::Github
5909
5909
  Loaded Bee github_issues: DashFu::Bee::GithubIssues
5910
5910
  Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5911
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5912
+ Loaded Bee feed: DashFu::Bee::Feed
5913
+ Loaded Bee github: DashFu::Bee::Github
5914
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5915
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5916
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5917
+ Loaded Bee feed: DashFu::Bee::Feed
5918
+ Loaded Bee github: DashFu::Bee::Github
5919
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5920
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5921
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5922
+ Loaded Bee feed: DashFu::Bee::Feed
5923
+ Loaded Bee github: DashFu::Bee::Github
5924
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5925
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5926
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5927
+ Loaded Bee feed: DashFu::Bee::Feed
5928
+ Loaded Bee github: DashFu::Bee::Github
5929
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5930
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5931
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5932
+ Loaded Bee feed: DashFu::Bee::Feed
5933
+ Loaded Bee github: DashFu::Bee::Github
5934
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5935
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5936
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5937
+ Loaded Bee feed: DashFu::Bee::Feed
5938
+ Loaded Bee github: DashFu::Bee::Github
5939
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5940
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5941
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5942
+ Loaded Bee feed: DashFu::Bee::Feed
5943
+ Loaded Bee github: DashFu::Bee::Github
5944
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5945
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5946
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5947
+ Loaded Bee feed: DashFu::Bee::Feed
5948
+ Loaded Bee github: DashFu::Bee::Github
5949
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5950
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5951
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5952
+ Loaded Bee feed: DashFu::Bee::Feed
5953
+ Loaded Bee github: DashFu::Bee::Github
5954
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5955
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5956
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5957
+ Loaded Bee feed: DashFu::Bee::Feed
5958
+ Loaded Bee github: DashFu::Bee::Github
5959
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5960
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5961
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5962
+ Loaded Bee feed: DashFu::Bee::Feed
5963
+ Loaded Bee github: DashFu::Bee::Github
5964
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5965
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
5966
+ Loaded Bee backtweets: DashFu::Bee::Backtweets
5967
+ Loaded Bee feed: DashFu::Bee::Feed
5968
+ Loaded Bee github: DashFu::Bee::Github
5969
+ Loaded Bee github_issues: DashFu::Bee::GithubIssues
5970
+ Loaded Bee ruby_gems: DashFu::Bee::RubyGems
metadata CHANGED
@@ -4,8 +4,8 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 30
8
- version: "0.30"
7
+ - 31
8
+ version: "0.31"
9
9
  platform: ruby
10
10
  authors:
11
11
  - Assaf Arkin
@@ -13,7 +13,7 @@ autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
15
 
16
- date: 2010-09-28 00:00:00 -07:00
16
+ date: 2010-09-29 00:00:00 -07:00
17
17
  default_executable:
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
@@ -150,7 +150,7 @@ licenses: []
150
150
  post_install_message:
151
151
  rdoc_options:
152
152
  - --title
153
- - DashFu::Bee 0.30
153
+ - DashFu::Bee 0.31
154
154
  - --main
155
155
  - README.rdoc
156
156
  - --webcvs