Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

petoem/mixpanel-crystal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mixpanel-crystal

GitHub release Travis GitHub license

mixpanel-crystal is a library for tracking events on Mixpanel from your crystal applications.

Installation

Add this to your application's shard.yml:

dependencies:
  mixpanel:
    github: petoem/mixpanel-crystal

Usage

require "mixpanel"

# Use Mixpanel::Tracker to track events in your application. To track an event, use
tracker = Mixpanel::Tracker.new "YOUR_TOKEN"
tracker.track "Signup", Mixpanel::Event::Properties{"username" => "Pino", "Age" => 2}

You can also take a look at the specs for more examples or generate documentation with crystal docs command.

Contributing

  1. Fork it ( https://github.com/petoem/mixpanel-crystal/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • petoem Michael Petö - creator, maintainer