Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonne Haß <me@jhass.eu>2015-05-04 14:05:22 +0300
committerJonne Haß <me@jhass.eu>2015-05-04 15:22:57 +0300
commitbb141280525815dc8d214dc7ac6af572211187d4 (patch)
treeae57a72ee425da5a152d56d22419c8b13286fee2 /spec/workers
parent63be9d57b601ab5ea37876ac6b7e5e97097b41fd (diff)
bump ruby-oembed
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/gather_o_embed_data_spec.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/spec/workers/gather_o_embed_data_spec.rb b/spec/workers/gather_o_embed_data_spec.rb
index 97177d7de..ad01e4a30 100644
--- a/spec/workers/gather_o_embed_data_spec.rb
+++ b/spec/workers/gather_o_embed_data_spec.rb
@@ -16,9 +16,10 @@ describe Workers::GatherOEmbedData do
"url" => "https://farm4.static.flickr.com/3123/2341623661_7c99f48bbf_m.jpg"
}
- @flickr_oembed_url = 'http://www.flickr.com/services/oembed/'
- @flickr_photo_url = 'http://www.flickr.com/photos/bees/2341623661'
- @flickr_oembed_get_request = @flickr_oembed_url+"?format=json&frame=1&iframe=1&maxheight=420&maxwidth=420&url="+@flickr_photo_url
+ @flickr_oembed_url = "https://www.flickr.com/services/oembed/"
+ @flickr_photo_url = "http://www.flickr.com/photos/bees/2341623661"
+ @flickr_oembed_get_request = "#{@flickr_oembed_url}" \
+ "?format=json&frame=1&iframe=1&maxheight=420&maxwidth=420&url=#{@flickr_photo_url}"
@no_oembed_url = 'http://www.we-do-not-support-oembed.com/index.html'