mixpanel_client 4.1.1 → 4.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe03a5d7befa1a3d7803ed07df9c2b0abfac7935
4
- data.tar.gz: ba03449f6c2a43694a123585e9906876d7049814
3
+ metadata.gz: 66b9122cf4df7cee00f1163d70c01ef6dbf8e9cf
4
+ data.tar.gz: 5a9f2fd41fc92fd431045e2df90565198267bcb9
5
5
  SHA512:
6
- metadata.gz: d87f9705275248dd99d57a9557894e82246bd8bcc3ec4f4cb8eb9b1c74d5556a5b7b8792afaf87fca241bd7debd6483d61d32e90bbb611b89074f8a6fc59c8f4
7
- data.tar.gz: 9a2be53360f968d82e660e9102a8c7baad35d100635e0aa2c5ec18b2659215eb2d424fd8a9c4f04e3a4f4e6b48854cf49e7a235bd7aa99263a00a29e9a965797
6
+ metadata.gz: 24a304c9e1a7ef58475919be09c2d53a70f5531df65ebc0407c1e4066f6b037400a0311600134fb6a5bd78d3e870ed0f1f42baad9e4a297cc7df45a44dcbaa36
7
+ data.tar.gz: 87a627eb3480f9bcbb4da591aa03f50c49eda5d373ad126a6c557a0c99accf1a4edc307c28eca10b800faa6ba991238421b098ec01f33cd8b250907f3e1fdb68
@@ -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)
@@ -10,6 +10,6 @@ module Mixpanel
10
10
  # Return metrics from Mixpanel Data API
11
11
  class Client
12
12
  # Mixpanel::Client library version
13
- VERSION = '4.1.1'
13
+ VERSION = '4.1.2'
14
14
  end
15
15
  end
@@ -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', '~> 0.6.7')
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).with do |*args|
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.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: 2014-06-16 00:00:00.000000000 Z
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.6.7
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.6.7
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: []