Any Google +1 button gem for Rails?

702 Views Asked by At

Is there any gem to insert google +1 button to your web page on rails app?

If not is there some special "rails way" of adding a button?

2

There are 2 best solutions below

0
On BEST ANSWER

Social Buttons gem provide Twitter/Facebook/Google+/Pinterest buttons.

7
On

any gem to insert google +1 button to your web page on rails app

No

some special "rails way" of adding a button

No

Just use the code provided by Google. It's a single tag added to your markup, and a few lines of script to make it work. Hardly Gem-worthy:

<g:plusone annotation="inline"></g:plusone>

<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>

See the Google documentation.