topsy 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. data/.gitignore +21 -0
  2. data/.yardoc/checksums +2 -0
  3. data/.yardoc/objects/Topsy.dat +0 -0
  4. data/.yardoc/objects/Topsy/Client.dat +0 -0
  5. data/.yardoc/objects/Topsy/Client/author_info_i.dat +0 -0
  6. data/.yardoc/objects/Topsy/Client/author_search_i.dat +0 -0
  7. data/.yardoc/objects/Topsy/Client/handle_response_i.dat +0 -0
  8. data/.yardoc/objects/Topsy/Client/link_post_count_i.dat +0 -0
  9. data/.yardoc/objects/Topsy/Client/link_posts_i.dat +0 -0
  10. data/.yardoc/objects/Topsy/Client/mashup_i.dat +0 -0
  11. data/.yardoc/objects/Topsy/Client/profile_search_i.dat +0 -0
  12. data/.yardoc/objects/Topsy/Client/raise_errors_i.dat +0 -0
  13. data/.yardoc/objects/Topsy/Client/related_i.dat +0 -0
  14. data/.yardoc/objects/Topsy/Client/search_count_i.dat +0 -0
  15. data/.yardoc/objects/Topsy/Client/search_i.dat +0 -0
  16. data/.yardoc/objects/Topsy/Client/stats_i.dat +0 -0
  17. data/.yardoc/objects/Topsy/Client/tags_i.dat +0 -0
  18. data/.yardoc/objects/Topsy/Client/trackbacks_i.dat +0 -0
  19. data/.yardoc/objects/Topsy/Client/trending_i.dat +0 -0
  20. data/.yardoc/objects/Topsy/Client/url_info_i.dat +0 -0
  21. data/.yardoc/objects/Topsy/SearchCounts.dat +0 -0
  22. data/.yardoc/objects/Topsy/SearchCounts/all_time_i.dat +0 -0
  23. data/.yardoc/objects/Topsy/SearchCounts/last_hour_i.dat +0 -0
  24. data/.yardoc/objects/Topsy/SearchCounts/last_month_i.dat +0 -0
  25. data/.yardoc/objects/Topsy/SearchCounts/last_week_i.dat +0 -0
  26. data/.yardoc/objects/Topsy/SearchCounts/overall_i.dat +0 -0
  27. data/.yardoc/objects/Topsy/SearchCounts/this_hour_i.dat +0 -0
  28. data/.yardoc/objects/Topsy/SearchCounts/this_month_i.dat +0 -0
  29. data/.yardoc/objects/Topsy/SearchCounts/this_week_i.dat +0 -0
  30. data/.yardoc/objects/Topsy/SearchCounts/today_i.dat +0 -0
  31. data/.yardoc/objects/root.dat +0 -0
  32. data/.yardoc/proxy_types +0 -0
  33. data/LICENSE +20 -0
  34. data/README.markdown +34 -0
  35. data/Rakefile +50 -0
  36. data/VERSION +1 -0
  37. data/changelog.markdown +5 -0
  38. data/lib/topsy.rb +174 -0
  39. data/lib/topsy/client.rb +180 -0
  40. data/lib/topsy/search_counts.rb +46 -0
  41. data/test/fixtures/authorinfo.json +19 -0
  42. data/test/fixtures/authorsearch.json +165 -0
  43. data/test/fixtures/linkpostcount.json +14 -0
  44. data/test/fixtures/linkposts.json +135 -0
  45. data/test/fixtures/profilesearch.json +23 -0
  46. data/test/fixtures/related.json +75 -0
  47. data/test/fixtures/search.json +126 -0
  48. data/test/fixtures/searchcount.json +17 -0
  49. data/test/fixtures/stats.json +16 -0
  50. data/test/fixtures/tags.json +51 -0
  51. data/test/fixtures/trackbacks.json +56 -0
  52. data/test/fixtures/trending.json +53 -0
  53. data/test/fixtures/urlinfo.json +19 -0
  54. data/test/helper.rb +45 -0
  55. data/test/test_topsy.rb +99 -0
  56. metadata +170 -0
@@ -0,0 +1,46 @@
1
+ module Topsy
2
+ class SearchCounts < Hashie::Dash
3
+ property :h, :default => 0
4
+ property :d, :default => 0
5
+ property :w, :default => 0
6
+ property :m, :default => 0
7
+ property :a, :default => 0
8
+
9
+ def last_hour
10
+ h
11
+ end
12
+
13
+ def this_hour
14
+ h
15
+ end
16
+
17
+ def today
18
+ d
19
+ end
20
+
21
+ def last_week
22
+ w
23
+ end
24
+
25
+ def this_week
26
+ w
27
+ end
28
+
29
+ def last_month
30
+ m
31
+ end
32
+
33
+ def this_month
34
+ m
35
+ end
36
+
37
+ def all_time
38
+ a
39
+ end
40
+
41
+ def overall
42
+ a
43
+ end
44
+
45
+ end
46
+ end
@@ -0,0 +1,19 @@
1
+ {
2
+ "request": {
3
+ "response_type": "json",
4
+ "resource": "authorinfo",
5
+ "parameters": {
6
+ "q": "http://twitter.com/pengwynn"
7
+ },
8
+ "url": "http://button.topsy.com/authorinfo.json?q=http%3A%2F%2Ftwitter.com%2Fpengwynn"
9
+ },
10
+ "response": {
11
+ "name": "Wynn Netherland",
12
+ "nick": "pengwynn",
13
+ "description": "Christian husband and father, Ruby developer and web designer. Co-founder of TweetCongress.org and Squeejee, makers of Good clean fun!™",
14
+ "influence_level": 10,
15
+ "url": "http://twitter.com/pengwynn",
16
+ "type": "twitter",
17
+ "topsy_author_url": "http://topsy.com/twitter/pengwynn"
18
+ }
19
+ }
@@ -0,0 +1,165 @@
1
+ {
2
+ "request": {
3
+ "response_type": "json",
4
+ "resource": "authorsearch",
5
+ "parameters": {
6
+ "q": "pengwynn"
7
+ },
8
+ "url": "http://button.topsy.com/authorsearch.json?q=pengwynn"
9
+ },
10
+ "response": {
11
+ "page": 1,
12
+ "total": 491,
13
+ "perpage": 15,
14
+ "list": [{
15
+ "name": "Bradley Joyce",
16
+ "nick": "bradleyjoyce",
17
+ "photo_url": "http://a3.twimg.com/profile_images/421303551/bradley_normal.png",
18
+ "description": "Entrepreneur and Web Developer -- TweetAbout.com, TickStart.com, TweetCongress.org, Floxee.org, Sherflock.com, Squeejee.com",
19
+ "influence_level": "7",
20
+ "hits": 47,
21
+ "url": "http://twitter.com/bradleyjoyce",
22
+ "topsy_author_url": "http://topsy.com/twitter/bradleyjoyce"
23
+ },
24
+ {
25
+ "name": "tweetcongress",
26
+ "nick": "tweetcongress",
27
+ "photo_url": "http://s.twimg.com/a/1253209888/images/default_profile_0_normal.png",
28
+ "description": "Grassroots effort to get Congress tweeting!",
29
+ "influence_level": "10",
30
+ "hits": 13,
31
+ "url": "http://twitter.com/tweetcongress",
32
+ "topsy_author_url": "http://topsy.com/twitter/tweetcongress"
33
+ },
34
+ {
35
+ "name": "Jim Mulholland",
36
+ "nick": "mully",
37
+ "photo_url": "http://a3.twimg.com/profile_images/385459831/twitterProfilePhoto_normal.jpg",
38
+ "description": "Partner at Squeejee, a Ruby / Rails consultancy; Co-Creator of TweetCongress; Husband and father of 3; ",
39
+ "influence_level": "4",
40
+ "hits": 19,
41
+ "url": "http://twitter.com/mully",
42
+ "topsy_author_url": "http://topsy.com/twitter/mully"
43
+ },
44
+ {
45
+ "name": "Chris McCroskey",
46
+ "nick": "curvezilla",
47
+ "photo_url": "http://a1.twimg.com/profile_images/413047412/chrisheadshot_normal.jpg",
48
+ "description": "Mission Control at Squeejee and Co-Founder of TweetCongress.org &amp; Founder of Heroes4Heroes a charity that sends care packets to the troops. Proud Razorback!",
49
+ "influence_level": "4",
50
+ "hits": 16,
51
+ "url": "http://twitter.com/curvezilla",
52
+ "topsy_author_url": "http://topsy.com/twitter/curvezilla"
53
+ },
54
+ {
55
+ "name": "Steve Lunceford",
56
+ "nick": "dslunceford",
57
+ "photo_url": "http://a3.twimg.com/profile_images/420259957/headshot_tight_normal.JPG",
58
+ "description": "20-year media and PR pro focusing on Government; TiVo, Home Theater & general gadget fanatic. Creator of http://GovTwit.com",
59
+ "influence_level": "10",
60
+ "hits": 11,
61
+ "url": "http://twitter.com/dslunceford",
62
+ "topsy_author_url": "http://topsy.com/twitter/dslunceford"
63
+ },
64
+ {
65
+ "name": "Damon Clinkscales",
66
+ "nick": "damon",
67
+ "photo_url": "http://a1.twimg.com/profile_images/561257818/mo5_crop_normal.jpg",
68
+ "description": "I'm a shepherd. Software engineer at VitalSource and leader of Austin On Rails. I also build apps like http://snaptweet.com and http://doesfollow.com. ",
69
+ "influence_level": "10",
70
+ "hits": 8,
71
+ "url": "http://twitter.com/damon",
72
+ "topsy_author_url": "http://topsy.com/twitter/damon"
73
+ },
74
+ {
75
+ "name": "Wynn Netherland",
76
+ "nick": "pengwynn",
77
+ "photo_url": "http://a1.twimg.com/profile_images/485575482/komikazee_normal.png",
78
+ "description": "Christian husband and father, Ruby developer and web designer. Co-founder of TweetCongress.org and Squeejee, makers of Good clean fun!™",
79
+ "influence_level": "10",
80
+ "hits": 8,
81
+ "url": "http://twitter.com/pengwynn",
82
+ "topsy_author_url": "http://topsy.com/twitter/pengwynn"
83
+ },
84
+ {
85
+ "name": "Luigi Montanez",
86
+ "nick": "luigimontanez",
87
+ "photo_url": "http://a3.twimg.com/profile_images/523899985/Comic_Book_normal.png",
88
+ "description": "Web App Developer at the Sunlight Labs",
89
+ "influence_level": "10",
90
+ "hits": 6,
91
+ "url": "http://twitter.com/luigimontanez",
92
+ "topsy_author_url": "http://topsy.com/twitter/luigimontanez"
93
+ },
94
+ {
95
+ "name": "Locomotivation",
96
+ "nick": "locomotivation",
97
+ "photo_url": "http://a1.twimg.com/profile_images/386446850/twitterProfilePhoto_normal.jpg",
98
+ "description": "The code blog from the guys at Squeejee.",
99
+ "influence_level": "5",
100
+ "hits": 12,
101
+ "url": "http://twitter.com/locomotivation",
102
+ "topsy_author_url": "http://topsy.com/twitter/locomotivation"
103
+ },
104
+ {
105
+ "name": "Adam Stacoviak",
106
+ "nick": "adamstac",
107
+ "photo_url": "http://a1.twimg.com/profile_images/493267610/twitterProfilePhoto_normal.jpg",
108
+ "description": "Co-founder of Handcrafted, co-producer of The Web 2.0 Show podcast, and a lover of beautiful UI/UX. You should follow me :)",
109
+ "influence_level": "3",
110
+ "hits": 11,
111
+ "url": "http://twitter.com/adamstac",
112
+ "topsy_author_url": "http://topsy.com/twitter/adamstac"
113
+ },
114
+ {
115
+ "name": "Rupak Ganguly",
116
+ "nick": "rupakg",
117
+ "photo_url": "http://a3.twimg.com/profile_images/469869723/twitterProfilePhoto_normal.jpg",
118
+ "description": "RoR freelancer. .NET architect. Love C#. Rails Magazine Editor.",
119
+ "influence_level": "1",
120
+ "hits": 9,
121
+ "url": "http://twitter.com/rupakg",
122
+ "topsy_author_url": "http://topsy.com/twitter/rupakg"
123
+ },
124
+ {
125
+ "name": "cglee",
126
+ "nick": "cglee",
127
+ "photo_url": "http://s.twimg.com/a/1253209888/images/default_profile_4_normal.png",
128
+ "description": "Rails developer",
129
+ "influence_level": "1",
130
+ "hits": 9,
131
+ "url": "http://twitter.com/cglee",
132
+ "topsy_author_url": "http://topsy.com/twitter/cglee"
133
+ },
134
+ {
135
+ "name": "DarthMolen",
136
+ "nick": "darthmolen",
137
+ "photo_url": "http://a3.twimg.com/profile_images/53887999/avatar_12_normal.gif",
138
+ "description": "MMA Radio Show Co-Host &quot;The No Holds Barred Show&quot;",
139
+ "influence_level": "8",
140
+ "hits": 6,
141
+ "url": "http://twitter.com/darthmolen",
142
+ "topsy_author_url": "http://topsy.com/twitter/darthmolen"
143
+ },
144
+ {
145
+ "name": "Chris Eppstein",
146
+ "nick": "chriseppstein",
147
+ "photo_url": "http://a1.twimg.com/profile_images/51769630/Photo_5_normal.jpg",
148
+ "description": "Father, Software Engineer, Drinker of Beer",
149
+ "influence_level": "4",
150
+ "hits": 8,
151
+ "url": "http://twitter.com/chriseppstein",
152
+ "topsy_author_url": "http://topsy.com/twitter/chriseppstein"
153
+ },
154
+ {
155
+ "name": "Squeejee",
156
+ "nick": "squeejeeinc",
157
+ "photo_url": "http://a3.twimg.com/profile_images/69807891/tool_normal.png",
158
+ "description": "Ruby on Rails Developers, Entrepreneurs, Builders",
159
+ "influence_level": "3",
160
+ "hits": 7,
161
+ "url": "http://twitter.com/squeejeeinc",
162
+ "topsy_author_url": "http://topsy.com/twitter/squeejeeinc"
163
+ }]
164
+ }
165
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "request": {
3
+ "response_type": "json",
4
+ "resource": "linkpostcount",
5
+ "parameters": {
6
+ "url": "http://twitter.com/pengwynn"
7
+ },
8
+ "url": "http://button.topsy.com/linkpostcount.json?url=http%3A%2F%2Ftwitter.com%2Fpengwynn"
9
+ },
10
+ "response": {
11
+ "all": 1004,
12
+ "contains": 0
13
+ }
14
+ }
@@ -0,0 +1,135 @@
1
+ {
2
+ "request": {
3
+ "response_type": "json",
4
+ "resource": "linkposts",
5
+ "parameters": {
6
+ "url": "http://twitter.com/pengwynn"
7
+ },
8
+ "url": "http://button.topsy.com/linkposts.json?url=http%3A%2F%2Ftwitter.com%2Fpengwynn"
9
+ },
10
+ "response": {
11
+ "page": 1,
12
+ "total": 1004,
13
+ "perpage": 10,
14
+ "list": [{
15
+ "permalink_url": "http://twitter.com/pengwynn/status/7253938349",
16
+ "date": 1262307998,
17
+ "content": "For auld lang syne, my dear: http://en.wikipedia.org/wiki/Auld_Lang_Syne#Lyrics",
18
+ "date_alpha": "16 hours ago",
19
+ "target": {
20
+ "topsy_trackback_url": "http://topsy.com/trackback?url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FAuld_Lang_Syne%23Lyrics",
21
+ "url": "http://en.wikipedia.org/wiki/Auld_Lang_Syne#Lyrics",
22
+ "title": "Auld Lang Syne - Wikipedia, the free encyclopedia",
23
+ "trackback_total": 8
24
+ }
25
+ },
26
+ {
27
+ "permalink_url": "http://twitter.com/pengwynn/status/7212961312",
28
+ "date": 1262216148,
29
+ "content": "Treating the in-laws to some Texas BBQ — at Rudy&#39;s http://gowal.la/s/dVo",
30
+ "date_alpha": "2 days ago",
31
+ "target": {
32
+ "topsy_trackback_url": "http://topsy.com/tb/gowalla.com/spots/43464",
33
+ "url": "http://gowalla.com/spots/43464",
34
+ "title": "Rudy's on Gowalla",
35
+ "trackback_total": 2
36
+ }
37
+ },
38
+ {
39
+ "permalink_url": "http://twitter.com/pengwynn/status/7167706422",
40
+ "date": 1262112340,
41
+ "content": "Catching a matinee of Sherlock Holmes — at Stagecoach Theater http://gowal.la/s/Grk",
42
+ "date_alpha": "3 days ago",
43
+ "target": {
44
+ "topsy_trackback_url": "http://topsy.com/tb/gowalla.com/spots/136029",
45
+ "url": "http://gowalla.com/spots/136029",
46
+ "title": "Stagecoach Theater on Gowalla",
47
+ "trackback_total": 1
48
+ }
49
+ },
50
+ {
51
+ "permalink_url": "http://twitter.com/pengwynn/status/7162128190",
52
+ "date": 1262100992,
53
+ "content": "Learning about the Pacific War — at National Museum of The Pacific War http://gowal.la/s/575",
54
+ "date_alpha": "3 days ago",
55
+ "target": {
56
+ "topsy_trackback_url": "http://topsy.com/tb/gowalla.com/spots/13808",
57
+ "url": "http://gowalla.com/spots/13808",
58
+ "title": "National Museum of The Pacific War on Gowalla",
59
+ "trackback_total": 1
60
+ }
61
+ },
62
+ {
63
+ "permalink_url": "http://twitter.com/pengwynn/status/7139983009",
64
+ "date": 1262045378,
65
+ "content": "Rails Magazine #5 is out http://ow.ly/QuFY /via @rupakg",
66
+ "date_alpha": "4 days ago",
67
+ "target": {
68
+ "topsy_trackback_url": "http://topsy.com/tb/www.railsmagazine.com/issues/5",
69
+ "url": "http://www.railsmagazine.com/issues/5",
70
+ "title": "Issue #5: Winter Jam",
71
+ "trackback_total": 13
72
+ }
73
+ },
74
+ {
75
+ "permalink_url": "http://twitter.com/pengwynn/status/7139743032",
76
+ "date": 1262044871,
77
+ "content": "Dinner and a brew — at Fredericksburg Brewing Co. http://gowal.la/s/2kD7",
78
+ "date_alpha": "4 days ago",
79
+ "target": {
80
+ "topsy_trackback_url": "http://topsy.com/tb/gowalla.com/spots/261180",
81
+ "url": "http://gowalla.com/spots/261180",
82
+ "title": "Fredericksburg Brewing Co. on Gowalla",
83
+ "trackback_total": 1
84
+ }
85
+ },
86
+ {
87
+ "permalink_url": "http://twitter.com/pengwynn/status/7132854574",
88
+ "date": 1262030184,
89
+ "content": "Nice new look: @changelogshow-esque icons on @github repo pages: http://bit.ly/8lIbOk /via @changelogshow",
90
+ "date_alpha": "4 days ago",
91
+ "target": {
92
+ "topsy_trackback_url": "http://topsy.com/tb/github.com/pengwynn/linkedin",
93
+ "url": "http://github.com/pengwynn/linkedin",
94
+ "title": "pengwynn's linkedin at master - GitHub",
95
+ "trackback_total": 11
96
+ }
97
+ },
98
+ {
99
+ "permalink_url": "http://twitter.com/pengwynn/status/7128477215",
100
+ "date": 1262020730,
101
+ "content": "It&#39;s always wine:30 in Sisterdale. — at Sister Creek Vineyards http://gowal.la/s/2ss1",
102
+ "date_alpha": "4 days ago",
103
+ "target": {
104
+ "topsy_trackback_url": "http://topsy.com/tb/gowalla.com/spots/284084",
105
+ "url": "http://gowalla.com/spots/284084",
106
+ "title": "Sister Creek Vineyards on Gowalla",
107
+ "trackback_total": 1
108
+ }
109
+ },
110
+ {
111
+ "permalink_url": "http://twitter.com/pengwynn/status/7126934586",
112
+ "date": 1262017497,
113
+ "content": "Picking up a bottle of Moscato, @mrspengwynn&#39;s favorite — at Grape Creek Vineyards http://gowal.la/s/Jnk",
114
+ "date_alpha": "4 days ago",
115
+ "target": {
116
+ "topsy_trackback_url": "http://topsy.com/tb/gowalla.com/spots/142525",
117
+ "url": "http://gowalla.com/spots/142525",
118
+ "title": "Grape Creek Vineyards on Gowalla",
119
+ "trackback_total": 2
120
+ }
121
+ },
122
+ {
123
+ "permalink_url": "http://twitter.com/pengwynn/status/7037770238",
124
+ "date": 1261763235,
125
+ "content": "Googjitsu: Using Google&#39;s own search against them - Toktumi&#39;s tale: http://bit.ly/6jwzTh",
126
+ "date_alpha": "7 days ago",
127
+ "target": {
128
+ "topsy_trackback_url": "http://topsy.com/tb/gigaom.com/2009/12/25/when-google-attacks-toktumis-tale/",
129
+ "url": "http://gigaom.com/2009/12/25/when-google-attacks-toktumis-tale/",
130
+ "title": "When Google Attacks: Toktumi’s Tale – GigaOM",
131
+ "trackback_total": 53
132
+ }
133
+ }]
134
+ }
135
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "request": {
3
+ "response_type": "json",
4
+ "resource": "profilesearch",
5
+ "parameters": {
6
+ "q": "pengwynn"
7
+ },
8
+ "url": "http://button.topsy.com/profilesearch.json?q=pengwynn"
9
+ },
10
+ "response": {
11
+ "page": 1,
12
+ "total": 1,
13
+ "perpage": 10,
14
+ "list": [{
15
+ "name": "Wynn Netherland",
16
+ "photo_url": "http://a1.twimg.com/profile_images/485575482/komikazee_normal.png",
17
+ "description": "Christian husband and father, Ruby developer and web designer. Co-founder of TweetCongress.org and Squeejee, makers of Good clean fun!™",
18
+ "influence_level": 10,
19
+ "url": "http://twitter.com/pengwynn",
20
+ "topsy_author_url": "http://topsy.com/twitter/pengwynn"
21
+ }]
22
+ }
23
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "request": {
3
+ "response_type": "json",
4
+ "resource": "related",
5
+ "parameters": {
6
+ "url": "http://gemcutter.org"
7
+ },
8
+ "url": "http://button.topsy.com/related.json?url=http%3A%2F%2Fgemcutter.org"
9
+ },
10
+ "response": {
11
+ "page": 1,
12
+ "total": 17,
13
+ "perpage": 10,
14
+ "list": [{
15
+ "trackback_total": 17,
16
+ "topsy_trackback_url": "http://topsy.com/tb/update.gemcutter.org/",
17
+ "url": "http://update.gemcutter.org/",
18
+ "title": "the update | gemcutter | awesome gem hosting"
19
+ },
20
+ {
21
+ "trackback_total": 120,
22
+ "topsy_trackback_url": "http://topsy.com/tb/gems.rubyforge.org/",
23
+ "url": "http://gems.rubyforge.org/",
24
+ "title": "gemcutter | awesome gem hosting"
25
+ },
26
+ {
27
+ "trackback_total": 9,
28
+ "topsy_trackback_url": "http://topsy.com/tb/robots.thoughtbot.com/post/165832471/gemcutter-org-redesign-preview",
29
+ "url": "http://robots.thoughtbot.com/post/165832471/gemcutter-org-redesign-preview",
30
+ "title": "Gemcutter.org redesign preview - GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS"
31
+ },
32
+ {
33
+ "trackback_total": 1,
34
+ "topsy_trackback_url": "http://topsy.com/tb/gist.github.com/245760",
35
+ "url": "http://gist.github.com/245760",
36
+ "title": "gist: 245760 - GitHub"
37
+ },
38
+ {
39
+ "trackback_total": 27,
40
+ "topsy_trackback_url": "http://topsy.com/tb/rubygems.org/",
41
+ "url": "http://rubygems.org/",
42
+ "title": "RubyGems Manuals"
43
+ },
44
+ {
45
+ "trackback_total": 13,
46
+ "topsy_trackback_url": "http://topsy.com/tb/github.com/qrush/gemcutter/tree/master",
47
+ "url": "http://github.com/qrush/gemcutter/tree/master",
48
+ "title": "qrush's gemcutter at master - GitHub"
49
+ },
50
+ {
51
+ "trackback_total": 73,
52
+ "topsy_trackback_url": "http://topsy.com/tb/github.com/blog/515-gem-building-is-defunct",
53
+ "url": "http://github.com/blog/515-gem-building-is-defunct",
54
+ "title": "Gem Building is Defunct - GitHub"
55
+ },
56
+ {
57
+ "trackback_total": 12,
58
+ "topsy_trackback_url": "http://topsy.com/tb/github.com/blog/500-state-of-the-hub-rackspace-day-0",
59
+ "url": "http://github.com/blog/500-state-of-the-hub-rackspace-day-0",
60
+ "title": "State of the Hub: Rackspace day 0 - GitHub"
61
+ },
62
+ {
63
+ "trackback_total": 293,
64
+ "topsy_trackback_url": "http://topsy.com/tb/thewhuffiebank.org/",
65
+ "url": "http://thewhuffiebank.org/",
66
+ "title": "The Whuffie Bank - Reputation is Wealth"
67
+ },
68
+ {
69
+ "trackback_total": 1,
70
+ "topsy_trackback_url": "http://topsy.com/tb/gemcutter.org/gems/rtunesu",
71
+ "url": "http://gemcutter.org/gems/rtunesu",
72
+ "title": "rtunesu | gemcutter | awesome gem hosting"
73
+ }]
74
+ }
75
+ }