mixpanel_client 4.1.1 → 4.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/changelog.md +5 -2
- data/lib/mixpanel/version.rb +1 -1
- data/mixpanel_client.gemspec +2 -2
- data/readme.md +1 -0
- data/spec/mixpanel_client/mixpanel_client_spec.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66b9122cf4df7cee00f1163d70c01ef6dbf8e9cf
|
4
|
+
data.tar.gz: 5a9f2fd41fc92fd431045e2df90565198267bcb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24a304c9e1a7ef58475919be09c2d53a70f5531df65ebc0407c1e4066f6b037400a0311600134fb6a5bd78d3e870ed0f1f42baad9e4a297cc7df45a44dcbaa36
|
7
|
+
data.tar.gz: 87a627eb3480f9bcbb4da591aa03f50c49eda5d373ad126a6c557a0c99accf1a4edc307c28eca10b800faa6ba991238421b098ec01f33cd8b250907f3e1fdb68
|
data/changelog.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
### v4.1.2
|
2
|
+
* Removes typhoeus version lock, fixes a "broken" test
|
3
|
+
|
1
4
|
### v4.1.1
|
2
5
|
* Add raw response
|
3
6
|
|
@@ -59,7 +62,7 @@
|
|
59
62
|
* Added options used in segmentation resources.
|
60
63
|
|
61
64
|
### v2.0.0
|
62
|
-
* Manually tested compatibility with Mixpanel gem.
|
65
|
+
* Manually tested compatibility with Mixpanel gem.
|
63
66
|
|
64
67
|
### v2.0.0.beta2
|
65
68
|
* Added JSON to gemspec for ruby versions less than 1.9.
|
@@ -75,5 +78,5 @@
|
|
75
78
|
* Refactored specs
|
76
79
|
|
77
80
|
### v1.0.0
|
78
|
-
* Changed "Mixpanel" class name to "MixpanelClient" to prevent naming collision in other
|
81
|
+
* Changed "Mixpanel" class name to "MixpanelClient" to prevent naming collision in other
|
79
82
|
libraries. [a710a84e8ba4b6f018b7](https://github.com/keolo/mixpanel_client/commit/a710a84e8ba4b6f018b7404ab9fabc8f08b4a4f3)
|
data/lib/mixpanel/version.rb
CHANGED
data/mixpanel_client.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.email = ['keolo@kea.gy']
|
12
12
|
s.homepage = 'http://github.com/keolo/mixpanel_client'
|
13
13
|
s.summary = %q{Ruby Mixpanel API Client Library}
|
14
|
-
s.description = %q{Simple ruby client interface to the Mixpanel API.}
|
14
|
+
s.description = %q{Simple ruby client interface to the Mixpanel Data API.}
|
15
15
|
|
16
16
|
s.rubyforge_project = 'mixpanel_client'
|
17
17
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
20
20
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
21
21
|
s.require_paths = ['lib']
|
22
|
-
s.add_runtime_dependency('typhoeus'
|
22
|
+
s.add_runtime_dependency('typhoeus')
|
23
23
|
s.add_development_dependency('bundler', '>=1.5.3')
|
24
24
|
s.add_development_dependency('rake', '>=10.1.1')
|
25
25
|
s.add_development_dependency('rdoc', '>=4.1.1')
|
data/readme.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Mixpanel Data API Client
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/mixpanel_client.png)](http://badge.fury.io/rb/mixpanel_client)
|
4
|
+
[![Code Climate](https://codeclimate.com/github/keolo/mixpanel_client/badges/gpa.svg)](https://codeclimate.com/github/keolo/mixpanel_client)
|
4
5
|
|
5
6
|
Ruby access to the [Mixpanel](http://mixpanel.com/) web analytics tool.
|
6
7
|
|
@@ -168,7 +168,7 @@ describe Mixpanel::Client do
|
|
168
168
|
|
169
169
|
specify 'Mixpanel::URI instance should receive the custom expiry time in
|
170
170
|
the options[:expiry] instead of 600s' do
|
171
|
-
Mixpanel::URI.should_receive(:mixpanel)
|
171
|
+
Mixpanel::URI.should_receive(:mixpanel) do |*args|
|
172
172
|
args.pop[:expire].should eq expiry.to_i
|
173
173
|
true
|
174
174
|
end.and_return(fake_url)
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mixpanel_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
4
|
+
version: 4.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Keolo Keagy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0
|
19
|
+
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -150,7 +150,7 @@ dependencies:
|
|
150
150
|
- - '>='
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 0.19.0
|
153
|
-
description: Simple ruby client interface to the Mixpanel API.
|
153
|
+
description: Simple ruby client interface to the Mixpanel Data API.
|
154
154
|
email:
|
155
155
|
- keolo@kea.gy
|
156
156
|
executables: []
|