Bump open_graph_reader

It now returns the origin for a missing og:url
This commit is contained in:
Jonne Haß 2015-05-04 19:31:50 +02:00 committed by Dennis Schubert
parent a30e34bfdb
commit f1c75e6a54
4 changed files with 5 additions and 3 deletions

View file

@ -26,6 +26,7 @@
* Submit messages in conversations with Ctrl+Enter [#5910](https://github.com/diaspora/diaspora/pull/5910) * Submit messages in conversations with Ctrl+Enter [#5910](https://github.com/diaspora/diaspora/pull/5910)
* Support syntax highlighting for fenced code blocks [#5908](https://github.com/diaspora/diaspora/pull/5908) * Support syntax highlighting for fenced code blocks [#5908](https://github.com/diaspora/diaspora/pull/5908)
* Added link to diasporafoundation.org to invitation email [#5893](https://github.com/diaspora/diaspora/pull/5893) * Added link to diasporafoundation.org to invitation email [#5893](https://github.com/diaspora/diaspora/pull/5893)
* Gracefully handle missing `og:url`s [#5926](https://github.com/diaspora/diaspora/pull/5926)
# 0.5.0.0 # 0.5.0.0

View file

@ -130,7 +130,7 @@ gem "redcarpet", "3.2.3"
gem "twitter-text", "1.11.0" gem "twitter-text", "1.11.0"
gem "roxml", "3.1.6" gem "roxml", "3.1.6"
gem "ruby-oembed", "0.8.14" gem "ruby-oembed", "0.8.14"
gem "open_graph_reader", "0.5.0" gem "open_graph_reader", "0.6.0"
# Services # Services

View file

@ -437,7 +437,7 @@ GEM
omniauth-oauth (~> 1.0) omniauth-oauth (~> 1.0)
omniauth-wordpress (0.2.1) omniauth-wordpress (0.2.1)
omniauth-oauth2 (~> 1.1.0) omniauth-oauth2 (~> 1.1.0)
open_graph_reader (0.5.0) open_graph_reader (0.6.0)
faraday (~> 0.9.0) faraday (~> 0.9.0)
nokogiri (~> 1.6) nokogiri (~> 1.6)
orm_adapter (0.5.0) orm_adapter (0.5.0)
@ -763,7 +763,7 @@ DEPENDENCIES
omniauth-tumblr (= 1.1) omniauth-tumblr (= 1.1)
omniauth-twitter (= 1.0.1) omniauth-twitter (= 1.0.1)
omniauth-wordpress (= 0.2.1) omniauth-wordpress (= 0.2.1)
open_graph_reader (= 0.5.0) open_graph_reader (= 0.6.0)
pry pry
pry-byebug pry-byebug
pry-debundle pry-debundle

View file

@ -1,6 +1,7 @@
OpenGraphReader.configure do |config| OpenGraphReader.configure do |config|
config.synthesize_title = true config.synthesize_title = true
config.synthesize_url = true config.synthesize_url = true
config.synthesize_full_url = true
config.synthesize_image_url = true config.synthesize_image_url = true
config.guess_datetime_format = true config.guess_datetime_format = true
end end