Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
SNOGmetrics is a bridge between Rails and KISSmetrics' JavaScript API.
Yes, but it's not as good as the JavaScript one, they even say so themselves:
One thing to note about the Ruby API is that it is not as full featured as the JavaScript client. Therefore, in most cases we recommend using the JavaScript client. However, some things are easier to track server-side, therefore we have provided a basic Ruby client.
It's true, but why settle for either or?
SNOGmetrics works similarly to flash messages. Events are recorded and saved to the session, and are then sent when the next page is rendered. This way you get all of the benefits of the JavaScript API, but you can record events in your controllers. All you have to do is install this gem, configure it, and add a snipplet of code to your layout.
Add snogmetrics
in your gemfile and run the bundle command to install it
Add an initializer file like the following under your config/initializers folder
Snogmetrics.kissmetrics_api_key = "your-api-key-here"
Edit your layout(s) and add <%= km.js! %>
in the body tag (this makes it work nicely with Turbolinks)
Replace all your KM.record(...)
and KM.identify(...)
calls in JavaScript with calls to km.record(...)
and km.identify(...)
Have a look at the included example application to see it in action.
Yes it does.
Just do it. You need to make sure that the _kmq
array exists, though. SNOGmetrics will define it where you place <%= km.js! %>
, but that is usually at the bottom of the page (with the async API you could probably put it at the top if you wanted to), so if you want to add things to _kmq
before that you need to define it yourself. Just add var _kmq = _kmq || []
and you're set.
SNOGmetrics implements #set, which is equivalent to _kmq.push(["set", ...])
, the preferred way of recording which version a user saw in an A/B test. SNOGmetrics does not support the KM.ab
function, because that's something you want to do in JavaScript only.
Yes, SNOGmetrics will not output the KISSmetrics API code unless RAILS_ENV
is production
by default. Instead it will output code that logs all calls to the console (if console
is defined).
If you'd like to change this behaviour, add the following to your initializer:
Snogmetrics.output_strategy = :live
Copyright (c) 2010 Theo Hultberg / Burt. See LICENSE for details.
FAQs
Unknown package
We found that snogmetrics demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.