embulk-input-google_analytics 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e97983d59913f897eba87209c18189501345cf99
|
4
|
+
data.tar.gz: a2e0a973d7bc783035c4c141025083e1cb0e6d70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 936b02145765c0c16ba882a610b35094ff9166bb94a5cb60593341b3d9a444d69540736cd58ff40dcda17bb06f2258592c742992a489970b97e9b34e8d01d6ba
|
7
|
+
data.tar.gz: 10b9a357c2b2f614256b19ac7d2bcf0ff68dd35d8111651d2c25ae206a6bd4a0ef0828902eaaf09e7861573563d25ef1f7f19f22fff5a030f97e21843d09aa76
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 0.1.8 - 2016-11-09
|
2
|
+
* TIME column should be double, not timestamp. e.g. sessionDuration (thx @kazuya030) [#13](https://github.com/treasure-data/embulk-input-google_analytics/pull/13) [#15](https://github.com/treasure-data/embulk-input-google_analytics/pull/15)
|
3
|
+
|
1
4
|
## 0.1.7 - 2016-10-20
|
2
5
|
* Fix to generate `end_date` on config_diff [#12](https://github.com/treasure-data/embulk-input-google_analytics/pull/12)
|
3
6
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
Gem::Specification.new do |spec|
|
3
3
|
spec.name = "embulk-input-google_analytics"
|
4
|
-
spec.version = "0.1.
|
4
|
+
spec.version = "0.1.8"
|
5
5
|
spec.authors = ["uu59"]
|
6
6
|
spec.summary = "Google Analytics input plugin for Embulk"
|
7
7
|
spec.description = "Loads records from Google Analytics."
|
@@ -111,7 +111,7 @@ module Embulk
|
|
111
111
|
]
|
112
112
|
expected_columns = [
|
113
113
|
Column.new(nil, "date_hour", :timestamp),
|
114
|
-
Column.new(nil, "session_duration", :
|
114
|
+
Column.new(nil, "session_duration", :double),
|
115
115
|
Column.new(nil, "cpm", :double),
|
116
116
|
Column.new(nil, "ctr", :double),
|
117
117
|
Column.new(nil, "visits", :long),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-input-google_analytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- uu59
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|