simple_ga_reporting 1.0.0 → 1.0.1

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
  SHA256:
3
- metadata.gz: 2e88b845d1465d10bcc1ca4933003986f08a4dc3feaba25a134773e91dfb4ed4
4
- data.tar.gz: 95f7c6475a6c0ef348114fd924760ff5e88a83e645d8d5aadd0c9977f15e92f0
3
+ metadata.gz: fc0ae3888a17645354efd787ef1b6fd1e14ddd2cb432a3cfa9cc78391419b9f1
4
+ data.tar.gz: a6dd8807a8fd35a4a33c519a83d3a43dd54a4b6017282ded20923ce4685db607
5
5
  SHA512:
6
- metadata.gz: '062738c24349613449247506a27c93da82d44239e5895937ef3b4f5ad19baf69dd8dce1fe6dc4021d83daea8f530e7bd77e10b233fb8aae7a3858a8facc827df'
7
- data.tar.gz: 8c21dc84064814dfe06f1b23cc7521965b8d7655b0b83b8adac23ad02b6a0004abfbcfcba41b901b645131c6f89a3375ce1d353d9350f5fb6d89d616897bba5b
6
+ metadata.gz: cb3bc032ddbc82014e80eeb25d4d7a21e445bd43ef74195758547d6c2c7a22d8d926675e518811dd0a8f4fe1ffea7a9afd132c97ed5ee697a95c145494030bdf
7
+ data.tar.gz: b6c5b891aecfdf83a56ff2452591f613777dbf006fc6ff58b1ef8ec72cc9c80fb1039813e4b957fe0c4347e9314ee24d60c0a6271047f9c83653139d4ee31ae7
data/.gitignore CHANGED
@@ -54,3 +54,4 @@ build-iPhoneSimulator/
54
54
 
55
55
  Gemfile.lock
56
56
  Guardfile
57
+ .idea/
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![CircleCI](https://circleci.com/gh/corselia/simple-ga-reporting.svg?style=svg)](https://circleci.com/gh/corselia/simple-ga-reporting)
1
+ [![Gem Version](https://badge.fury.io/rb/simple_ga_reporting.svg)](https://badge.fury.io/rb/simple_ga_reporting) [![CircleCI](https://circleci.com/gh/corselia/simple-ga-reporting.svg?style=svg)](https://circleci.com/gh/corselia/simple-ga-reporting)
2
2
 
3
3
  # What's this?
4
4
  This gem helps you to obtain `Google Analytics` reporting data with ease.
@@ -1,6 +1,7 @@
1
1
  require 'legato'
2
2
  require 'oauth2'
3
3
  require 'signet/oauth_2/client'
4
+ require 'yaml'
4
5
 
5
6
  module LegatoGaUser
6
7
  SCOPE = 'https://www.googleapis.com/auth/analytics.readonly'.freeze
@@ -1,4 +1,5 @@
1
1
  require 'simple_ga_reporting/legato_ga_user'
2
+ require 'yaml'
2
3
 
3
4
  class SimpleGaReports
4
5
  extend LegatoGaUser
@@ -1,3 +1,3 @@
1
1
  module SimpleGaReporting
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_ga_reporting
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Osamu Takiya