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?
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?
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.
Social Buttons gem provide Twitter/Facebook/Google+/Pinterest buttons.