search_console_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: 3968aa346b7e66d1096c29eef5dbcfab5814196b722fe2890dfcc2f671d70d63
4
- data.tar.gz: 9267710cb171c3974dc6d136ea3d2dc1429ae61e2606f0df0d167590338b0883
3
+ metadata.gz: 9909e7477906d0d92cadc90ecd8cf2573d2c745da25866bb649cbc286af8a2f4
4
+ data.tar.gz: a53246341e253a27d8abcd229178f19549140e36b3c8ec3365d727a94aa942a4
5
5
  SHA512:
6
- metadata.gz: 0c9905e38e8a5a0d891b52cd692e99fdd395380962d4b65adfb6d790fa944b01e761876b4c78c0c7834f432f2f0f2ecb394042bd3e41d085a974f0b111db1e23
7
- data.tar.gz: bef1b28a7ee2fcf906ae732152762b300e37f67beb387b56c7eca6eabb7d8ce7235839436e9d7d2e5cd4195e93b55961f2ababeeb651dbea1f182ffaf62fe812
6
+ metadata.gz: 3d9130eb30906c21ea2e5798b7c4c64c368dcb6eb6960196d623ad4c9bd9e39731c75cfcf6d2fe2ed9875da5d573923dbed63d5199917328870c132a5ca292f1
7
+ data.tar.gz: 3fa282e04cd40b62b8aedfc9bd855c5a6fae06b194cffd0c1baa386aa7944d41ece717ebc2f6f9d42155092484eb6d1332975d153bb540b4d1591166c4f2925c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- search_console_api (0.0.3)
4
+ search_console_api (0.0.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -7,8 +7,8 @@ module SearchConsoleApi
7
7
  def initialize(access_token:, site: nil, start_date: nil, end_date: nil, dimensions: [], type: nil, dimension_filter_groups: [], aggregation_type: nil, row_limit: nil, start_row: nil, data_state: nil)
8
8
  @access_token = access_token
9
9
  @site = site
10
- @start_date = DateTime.parse(start_date).strftime("%Y-%m-%d")
11
- @end_date = DateTime.parse(end_date).strftime("%Y-%m-%d")
10
+ @start_date = DateTime.parse(start_date.to_s).strftime("%Y-%m-%d")
11
+ @end_date = DateTime.parse(end_date.to_s).strftime("%Y-%m-%d")
12
12
  @dimensions = dimensions
13
13
  @type = type
14
14
  @dimension_filter_groups = dimension_filter_groups
@@ -1,3 +1,3 @@
1
1
  module SearchConsoleApi
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: search_console_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