onebox 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +4 -0
  3. data/.travis.yml +4 -0
  4. data/README.md +154 -113
  5. data/lib/onebox.rb +6 -3
  6. data/lib/onebox/engine.rb +28 -26
  7. data/lib/onebox/engine/amazon_onebox.rb +4 -2
  8. data/lib/onebox/engine/bliptv_onebox.rb +4 -2
  9. data/lib/onebox/engine/clikthrough_onebox.rb +4 -2
  10. data/lib/onebox/engine/college_humor_onebox.rb +3 -2
  11. data/lib/onebox/engine/dailymotion_onebox.rb +4 -2
  12. data/lib/onebox/engine/dotsub_onebox.rb +4 -2
  13. data/lib/onebox/engine/example_onebox.rb +4 -5
  14. data/lib/onebox/engine/flickr_onebox.rb +3 -2
  15. data/lib/onebox/engine/funny_or_die_onebox.rb +4 -2
  16. data/lib/onebox/engine/github_blob_onebox.rb +28 -0
  17. data/lib/onebox/engine/github_commit_onebox.rb +43 -0
  18. data/lib/onebox/engine/github_gist_onebox.rb +33 -0
  19. data/lib/onebox/engine/github_pullrequest_onebox.rb +43 -0
  20. data/lib/onebox/engine/html.rb +1 -1
  21. data/lib/onebox/engine/hulu_onebox.rb +5 -2
  22. data/lib/onebox/engine/imgur_image_onebox.rb +26 -0
  23. data/lib/onebox/engine/itunes_onebox.rb +28 -0
  24. data/lib/onebox/engine/json.rb +11 -0
  25. data/lib/onebox/engine/kinomap_onebox.rb +27 -0
  26. data/lib/onebox/engine/nfb_onebox.rb +5 -2
  27. data/lib/onebox/engine/open_graph.rb +1 -1
  28. data/lib/onebox/engine/qik_onebox.rb +4 -2
  29. data/lib/onebox/engine/revision3_onebox.rb +3 -2
  30. data/lib/onebox/engine/slideshare_onebox.rb +4 -2
  31. data/lib/onebox/engine/sound_cloud_onebox.rb +4 -2
  32. data/lib/onebox/engine/spotify_onebox.rb +27 -0
  33. data/lib/onebox/engine/stack_exchange_onebox.rb +4 -2
  34. data/lib/onebox/engine/ted_onebox.rb +5 -2
  35. data/lib/onebox/engine/twitter_onebox.rb +31 -0
  36. data/lib/onebox/engine/viddler_onebox.rb +5 -3
  37. data/lib/onebox/engine/vimeo_onebox.rb +3 -2
  38. data/lib/onebox/engine/wikipedia_onebox.rb +4 -2
  39. data/lib/onebox/engine/yfrog_onebox.rb +5 -2
  40. data/lib/onebox/version.rb +1 -1
  41. data/lib/onebox/view.rb +21 -0
  42. data/onebox.gemspec +1 -1
  43. data/spec/fixtures/githubblob.response +922 -0
  44. data/spec/fixtures/githubcommit.response +87 -0
  45. data/spec/fixtures/githubgist.response +468 -0
  46. data/spec/fixtures/githubpullrequest.response +216 -0
  47. data/spec/fixtures/imguralbum.response +941 -0
  48. data/spec/fixtures/{imgur.response → imgurimage.response} +870 -890
  49. data/spec/fixtures/itunes.response +402 -0
  50. data/spec/fixtures/{rottentomatoes_fresh.response → rottentomatoesfresh.response} +0 -0
  51. data/spec/fixtures/{rottentomatoes_incomplete.response → rottentomatoesincomplete.response} +0 -0
  52. data/spec/fixtures/{rottentomatoes_rotten.response → rottentomatoesrotten.response} +0 -0
  53. data/spec/fixtures/spotify.response +250 -0
  54. data/spec/fixtures/{wikipedia_redirected.response → wikipediaredirected.response} +0 -0
  55. data/spec/lib/onebox/engine/{amazon_spec.rb → amazon_onebox_spec.rb} +7 -4
  56. data/spec/lib/onebox/engine/{bliptv_spec.rb → bliptv_onebox_spec.rb} +7 -4
  57. data/spec/lib/onebox/engine/{clikthrough_spec.rb → clikthrough_onebox_spec.rb} +7 -4
  58. data/spec/lib/onebox/engine/{college_humor_spec.rb → college_humor_onebox_spec.rb} +7 -4
  59. data/spec/lib/onebox/engine/{dailymotion_spec.rb → dailymotion_onebox_spec.rb} +7 -4
  60. data/spec/lib/onebox/engine/{dotsub_spec.rb → dotsub_onebox_spec.rb} +7 -4
  61. data/spec/lib/onebox/engine/example_onebox_spec.rb +21 -0
  62. data/spec/lib/onebox/engine/{flickr_spec.rb → flickr_onebox_spec.rb} +7 -4
  63. data/spec/lib/onebox/engine/{funny_or_die_spec.rb → funny_or_die_onebox_spec.rb} +7 -4
  64. data/spec/lib/onebox/engine/github_blob_onebox_spec.rb +30 -0
  65. data/spec/lib/onebox/engine/github_commit_onebox_spec.rb +61 -0
  66. data/spec/lib/onebox/engine/github_gist_onebox_spec.rb +29 -0
  67. data/spec/lib/onebox/engine/github_pullrequest_onebox_spec.rb +58 -0
  68. data/spec/lib/onebox/engine/html_spec.rb +27 -0
  69. data/spec/lib/onebox/engine/{hulu_spec.rb → hulu_onebox_spec.rb} +7 -4
  70. data/spec/lib/onebox/engine/imgur_image_onebox_spec.rb +29 -0
  71. data/spec/lib/onebox/engine/itunes_onebox_spec.rb +29 -0
  72. data/spec/lib/onebox/engine/json_spec.rb +27 -0
  73. data/spec/lib/onebox/engine/kinomap_onebox_spec.rb +37 -0
  74. data/spec/lib/onebox/engine/{nfb_spec.rb → nfb_onebox_spec.rb} +7 -4
  75. data/spec/lib/onebox/engine/open_graph_spec.rb +27 -0
  76. data/spec/lib/onebox/engine/{qik_spec.rb → qik_onebox_spec.rb} +7 -4
  77. data/spec/lib/onebox/engine/{revision3_spec.rb → revision3_onebox_spec.rb} +7 -4
  78. data/spec/lib/onebox/engine/{slideshare_spec.rb → slideshare_onebox_spec.rb} +7 -4
  79. data/spec/lib/onebox/engine/{sound_cloud_spec.rb → sound_cloud_onebox_spec.rb} +7 -4
  80. data/spec/lib/onebox/engine/spotify_onebox_spec.rb +36 -0
  81. data/spec/lib/onebox/engine/{stack_exchange_spec.rb → stack_exchange_onebox_spec.rb} +7 -4
  82. data/spec/lib/onebox/engine/{ted_spec.rb → ted_onebox_spec.rb} +7 -4
  83. data/spec/lib/onebox/engine/twitter_onebox_spec.rb +47 -0
  84. data/spec/lib/onebox/engine/{viddler_spec.rb → viddler_onebox_spec.rb} +7 -4
  85. data/spec/lib/onebox/engine/{vimeo_spec.rb → vimeo_onebox_spec.rb} +7 -4
  86. data/spec/lib/onebox/engine/{wikipedia_spec.rb → wikipedia_onebox_spec.rb} +7 -4
  87. data/spec/lib/onebox/engine/{yfrog_spec.rb → yfrog_onebox_spec.rb} +7 -4
  88. data/spec/lib/onebox/engine_spec.rb +38 -27
  89. data/spec/lib/onebox/preview_spec.rb +3 -1
  90. data/spec/lib/onebox/view_spec.rb +16 -0
  91. data/spec/lib/onebox_spec.rb +1 -1
  92. data/spec/spec_helper.rb +8 -3
  93. data/spec/support/html_spec_helper.rb +1 -1
  94. data/templates/_layout.mustache +4 -0
  95. data/templates/amazon.mustache +5 -0
  96. data/templates/bliptv.mustache +5 -0
  97. data/templates/clikthrough.mustache +4 -0
  98. data/templates/collegehumor.mustache +5 -0
  99. data/templates/dailymotion.mustache +5 -0
  100. data/templates/dotsub.mustache +5 -0
  101. data/templates/example.mustache +2 -0
  102. data/templates/flickr.mustache +4 -0
  103. data/templates/funnyordie.mustache +6 -0
  104. data/templates/githubblob.mustache +5 -0
  105. data/templates/githubcommit.mustache +11 -0
  106. data/templates/githubgist.mustache +3 -0
  107. data/templates/githubpullrequest.mustache +14 -0
  108. data/templates/hulu.mustache +6 -0
  109. data/templates/imgurimage.mustache +3 -0
  110. data/templates/itunes.mustache +4 -0
  111. data/templates/kinomap.mustache +5 -0
  112. data/templates/nfb.mustache +5 -0
  113. data/templates/qik.mustache +4 -0
  114. data/templates/revision3.mustache +5 -0
  115. data/templates/slideshare.mustache +4 -0
  116. data/templates/soundcloud.mustache +5 -0
  117. data/templates/spotify.mustache +4 -0
  118. data/templates/stackexchange.mustache +3 -0
  119. data/templates/ted.mustache +5 -0
  120. data/templates/twitter.mustache +7 -0
  121. data/templates/viddler.mustache +5 -0
  122. data/templates/vimeo.mustache +5 -0
  123. data/templates/wikipedia.mustache +4 -0
  124. data/templates/yfrog.mustache +4 -0
  125. metadata +139 -90
  126. data/spec/fixtures/apple.response +0 -391
  127. data/spec/fixtures/clickthrough.response +0 -1472
  128. data/spec/fixtures/gist.response +0 -282
  129. data/spec/fixtures/github_blob.response +0 -706
  130. data/spec/fixtures/github_commit.response +0 -881
  131. data/spec/fixtures/github_pullrequest.response +0 -1619
  132. data/spec/lib/onebox/engine/example_spec.rb +0 -18
  133. data/templates/amazon.handlebars +0 -9
  134. data/templates/bliptv.handlebars +0 -10
  135. data/templates/clickthrough.handlebars +0 -8
  136. data/templates/clikthrough.handlebars +0 -8
  137. data/templates/collegehumor.handlebars +0 -9
  138. data/templates/dailymotion.handlebars +0 -9
  139. data/templates/dotsub.handlebars +0 -9
  140. data/templates/flickr.handlebars +0 -8
  141. data/templates/funnyordie.handlebars +0 -9
  142. data/templates/hulu.handlebars +0 -9
  143. data/templates/nfb.handlebars +0 -8
  144. data/templates/qik.handlebars +0 -7
  145. data/templates/revision3.handlebars +0 -9
  146. data/templates/slideshare.handlebars +0 -8
  147. data/templates/soundcloud.handlebars +0 -9
  148. data/templates/stackexchange.handlebars +0 -7
  149. data/templates/ted.handlebars +0 -8
  150. data/templates/viddler.handlebars +0 -9
  151. data/templates/vimeo.handlebars +0 -9
  152. data/templates/wikipedia.handlebars +0 -8
  153. data/templates/yfrog.handlebars +0 -8
@@ -1,18 +0,0 @@
1
- require "spec_helper"
2
-
3
- describe Onebox::Engine::ExampleOnebox do
4
- let(:link) { "http://example.com" }
5
- before do
6
- fake(link, response("example.response"))
7
- end
8
-
9
- it_behaves_like "engines"
10
-
11
- describe "#to_html" do
12
- let(:html) { described_class.new(link).to_html }
13
-
14
- it "returns template if given valid data" do
15
- expect(html).to include(onebox_view("Example Domain 1"))
16
- end
17
- end
18
- end
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{name}}</h1>
4
- <h2 class="host">amazon.com</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- <p>{{price}}</p>
8
- </a>
9
- </div>
@@ -1,10 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">blip.tv</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
10
-
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">clickthrough.com</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- </a>
8
- </div>
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">clikthrough.com</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- </a>
8
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">collegehumor.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">dailymotion.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">dotsub.com</h2>
5
- <img src="{{photo}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">flickr.com</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- </a>
8
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">funnyordie.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">hulu.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">nfb.ca</h2>
5
- {{video}}
6
- <p>{{description}}</p>
7
- </a>
8
- </div>
@@ -1,7 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">qik.com</h2>
5
- <img src="{{image}}" />
6
- </a>
7
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">revison3.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">slideshare.net</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- </a>
8
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">soundcloud.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,7 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">stackexchange.com</h2>
5
- <p>{{question}}</p>>
6
- </a>
7
- </div>
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">vimeo.com</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- </a>
8
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">viddler.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p
8
- </a>
9
- </div>
@@ -1,9 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">vimeo.com</h2>
5
- <img src="{{image}}" />
6
- {{video}}
7
- <p>{{description}}</p>
8
- </a>
9
- </div>
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{name}}</h1>
4
- <h2 class="host">wikipedia.org</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- </a>
8
- </div>
@@ -1,8 +0,0 @@
1
- <div class="onebox">
2
- <a href="{{url}}">
3
- <h1>{{title}}</h1>
4
- <h2 class="host">yfrog.com</h2>
5
- <img src="{{image}}" />
6
- <p>{{description}}</p>
7
- </a>
8
- </div>