google_analytics_v4_api 0.0.3 → 0.0.4

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
  SHA256:
3
- metadata.gz: 516d5859258748f1f4749df54b064cc3caf1b9707028041fd0db0084a75d719d
4
- data.tar.gz: 0030de2106fff16d2ad13e7feb9c98af718fa0c55b04c30a9eecd462ff8df08a
3
+ metadata.gz: e445dae3054767495db0ac92f151124aa6461a9ef9aabbc0f730500367ea5b09
4
+ data.tar.gz: faa4d4804016bd7c65f16326fa971415bfa02cdf4c06df6b03d17905fce30f8b
5
5
  SHA512:
6
- metadata.gz: 3bee4ad056696d0829191e46f6187c0d5a29cfeaebc5ad7fba3ea3b0766aa7d004b1b99ec26f854f4f7cf6d636c94f1f3b097e2ad5991413e7507be3e545443c
7
- data.tar.gz: 060b03b7c94203270e627dcc35ae8e1262ccbb467040b5221c86518c4815b16a5239d3c77699ea43a8b5b511160d948143a4069aaa3b67b8af8d398e14ef4be6
6
+ metadata.gz: 88c36509bc89b0c7a9da6b8f1e9cf33488307351453a90119ccfeaf65dc604189184a24d3adcc9e9e92a7d64fd7b44138b0ade2d3bd3c475f31c130027a81ab0
7
+ data.tar.gz: b55dcfaf9609e1d350a91c1f95df653d3f8e9a68f2ef367ae48aaac66b4be6d1312939371f2db74da878a9da73ecb96325377fc38d69401414937f330dd6972e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- google_analytics_v4_api (0.0.3)
4
+ google_analytics_v4_api (0.0.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -15,12 +15,12 @@ module GoogleAnalyticsV4Api
15
15
  end
16
16
 
17
17
  def to_json
18
- {
19
- "dateRanges": @date_ranges,
20
- "dimensions": @dimensions,
21
- "metrics": @metrics,
22
- "dimensionFilter": @dimension_filter
23
- }.to_json
18
+ output = {}
19
+ output[:dateRanges] = @date_ranges if @date_ranges
20
+ output[:dimensions] = @dimensions if @dimensions.any?
21
+ output[:metrics] = @metrics if @metrics.any?
22
+ output[:dimensionFilter] = @dimension_filter if @dimension_filter.any?
23
+ output.to_json
24
24
  end
25
25
  end
26
26
  end
@@ -12,8 +12,8 @@ module GoogleAnalyticsV4Api
12
12
  @body = JSON.parse body
13
13
  @raw_dimension_headers = @body["dimensionHeaders"]
14
14
  @raw_metric_headers = @body["metricHeaders"]
15
- @rows = @body["rows"]
16
- @row_cont = @body["rowCount"]
15
+ @rows = @body["rows"] || []
16
+ @row_cont = @body["rowCount"] || 0
17
17
  @metadata = @body["metadata"]
18
18
  @kind = @body["kind"]
19
19
  end
@@ -1,3 +1,3 @@
1
1
  module GoogleAnalyticsV4Api
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_analytics_v4_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gustavo Garcia
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-09 00:00:00.000000000 Z
11
+ date: 2023-01-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A very humble wrapper for the Google Analytics V4 API to be used in conjuntion
14
14
  with OAuth2