gtm_rails
Simply embed Google Tag Manager container snippet into Rails application.
Installation
Add these lines to your application's Gemfile:
gem 'gtm_rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install gtm_rails
Configuration
Create config/google_tag_manager.yml in your Rails application.
staging:
foo: GTM-YourGtmId1
bar: GTM-YourGtmId2
baz: GTM-YourGtmId3
production:
foo: GTM-YourGtmId4
bar: GTM-YourGtmId5
baz: GTM-YourGtmId6
The above is a sample. foo, bar, baz are arbitrary label names.
In view, use as follows. The argument is a label name specified in config/google_tag_manager.yml.
<%= google_tag_manager(:foo) %>
Google Tag Manager container snippet expands to RAILS_ENV and label name. If there is no match, a blank is returned.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
License
gtm_rails is released under the MIT License.