kpumuk / meta-tags

Search Engine Optimization (SEO) for Ruby on Rails applications.
MIT License
2.73k stars 275 forks source link

Remove :author (Google has discontinued support) #66

Closed lachlanjc closed 7 years ago

lachlanjc commented 9 years ago

Google no longer supports Google+ Authors, so you can remove the code and demo for it.

https://support.google.com/webmasters/answer/6083347?rd=1

nunommc commented 7 years ago

Also, the documentation has got 2 use cases for author and doesn't seem to be returning what was expected.

1 .set_meta_tags author: "http://yourgplusprofile.com/profile/url"
# <link rel="author" href="http://yourgplusprofile.com/profile/url" />

2. set_meta_tags author: [ "Dmytro Shteflyuk", "John Doe" ]
# <meta name="author" content="Dmytro Shteflyuk"/>
# <meta name="author" content="John Doe"/>

This one is not working the way it was expected. Instead is creating a string with both names, rather than 2 meta-tags

kpumuk commented 7 years ago

Resolved in https://github.com/kpumuk/meta-tags/pull/101