├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── Rakefile ├── Readme.rdoc ├── demo ├── faraday_consumer.rb ├── out_of_process_consumer.rb └── simple_messages.rb ├── lib ├── mixpanel-ruby.rb └── mixpanel-ruby │ ├── consumer.rb │ ├── error.rb │ ├── events.rb │ ├── groups.rb │ ├── people.rb │ ├── tracker.rb │ └── version.rb ├── mixpanel-ruby.gemspec └── spec ├── mixpanel-ruby ├── consumer_spec.rb ├── error_spec.rb ├── events_spec.rb ├── groups_spec.rb ├── people_spec.rb └── tracker_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | Gemfile.lock 3 | html 4 | mixpanel-ruby*.gem 5 | .bundle 6 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /Readme.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/Readme.rdoc -------------------------------------------------------------------------------- /demo/faraday_consumer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/demo/faraday_consumer.rb -------------------------------------------------------------------------------- /demo/out_of_process_consumer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/demo/out_of_process_consumer.rb -------------------------------------------------------------------------------- /demo/simple_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/demo/simple_messages.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/lib/mixpanel-ruby.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby/consumer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/lib/mixpanel-ruby/consumer.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/lib/mixpanel-ruby/error.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/lib/mixpanel-ruby/events.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby/groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/lib/mixpanel-ruby/groups.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby/people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/lib/mixpanel-ruby/people.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/lib/mixpanel-ruby/tracker.rb -------------------------------------------------------------------------------- /lib/mixpanel-ruby/version.rb: -------------------------------------------------------------------------------- 1 | module Mixpanel 2 | VERSION = '2.3.0' 3 | end 4 | -------------------------------------------------------------------------------- /mixpanel-ruby.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/mixpanel-ruby.gemspec -------------------------------------------------------------------------------- /spec/mixpanel-ruby/consumer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/spec/mixpanel-ruby/consumer_spec.rb -------------------------------------------------------------------------------- /spec/mixpanel-ruby/error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/spec/mixpanel-ruby/error_spec.rb -------------------------------------------------------------------------------- /spec/mixpanel-ruby/events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/spec/mixpanel-ruby/events_spec.rb -------------------------------------------------------------------------------- /spec/mixpanel-ruby/groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/spec/mixpanel-ruby/groups_spec.rb -------------------------------------------------------------------------------- /spec/mixpanel-ruby/people_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/spec/mixpanel-ruby/people_spec.rb -------------------------------------------------------------------------------- /spec/mixpanel-ruby/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/spec/mixpanel-ruby/tracker_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixpanel/mixpanel-ruby/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------