embulk-input-google_analytics 0.1.7 → 0.1.8

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: fc50f8a289839aafb14828a29eb4d89e1952f554
4
- data.tar.gz: 74c3df3ead9e9af21aa93164dd593e1c234cb061
3
+ metadata.gz: e97983d59913f897eba87209c18189501345cf99
4
+ data.tar.gz: a2e0a973d7bc783035c4c141025083e1cb0e6d70
5
5
  SHA512:
6
- metadata.gz: 1714c557804ab997fa73451693ba27f87e933acfc6450e4e3d2dd5b68d7dfa28a03070384cc566c974052d5a5872dbc6cd7fa113043ac2e66a6ae2f7bb2d526c
7
- data.tar.gz: 1d2df2f665513659eaca4ba9fab458d288d38c13473522b603487eef8d3947f384bb4700956808b1a64d31b4668392d6811e8c6ef343a12cc8aad7dd7b7d4bfb
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.7"
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."
@@ -25,10 +25,8 @@ module Embulk
25
25
  :string
26
26
  when "INTEGER"
27
27
  :long
28
- when "PERCENT", "FLOAT", "CURRENCY"
28
+ when "PERCENT", "FLOAT", "CURRENCY", "TIME"
29
29
  :double
30
- when "TIME"
31
- :timestamp
32
30
  end
33
31
  else
34
32
  # custom dimension
@@ -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", :timestamp),
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.7
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-10-20 00:00:00.000000000 Z
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