gosquared 3.0.8 → 3.1.0
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 +4 -4
- data/Gemfile +2 -2
- data/lib/gosquared.rb +1 -1
- data/lib/gosquared/client.rb +0 -1
- data/spec/account_spec.rb +1 -1
- data/spec/people_spec.rb +3 -3
- data/spec/tracking_spec.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b08adf61eaf083d34f944c45d22f919be153296
|
|
4
|
+
data.tar.gz: c80660918a18f39b0b0d39ca683e9c7724a0c3c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f94fd4812bcc3261561e7156732e5cefb686e74c8ea116dd78e2097821cb03d4b41baa55aa4892556626009b6e18e95c0f8f79c00b05df61dc624bd96158e16a
|
|
7
|
+
data.tar.gz: e7da126fc50218f2d2ea58e876eccf7707c065ceae7cd103ea6853bd67bb5bd0227521a71ac43a402eda915478554105e68241ff2fbd2bdad35512ff0e944389
|
data/Gemfile
CHANGED
data/lib/gosquared.rb
CHANGED
data/lib/gosquared/client.rb
CHANGED
data/spec/account_spec.rb
CHANGED
data/spec/people_spec.rb
CHANGED
|
@@ -107,9 +107,9 @@ describe Gosquared::People do
|
|
|
107
107
|
|
|
108
108
|
it 'deletes a person from a project' do
|
|
109
109
|
stub_request(:delete, "https://api.gosquared.com/people/v1/people/1?api_key=demo&site_token=GSN-106863-S").
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
with(:body => "[{}]",
|
|
111
|
+
:headers => {'Accept'=>'*/*', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'}).
|
|
112
|
+
to_return(:status => 200, :body => "", :headers => {})
|
|
113
113
|
gs.people.people.person_id('1')
|
|
114
114
|
response = gs.people.delete
|
|
115
115
|
expect(response.code).to eq("200")
|
data/spec/tracking_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gosquared
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0
|
|
4
|
+
version: 3.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Russell Vaughan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-12-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -38,8 +38,9 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description:
|
|
42
|
-
|
|
41
|
+
description: |-
|
|
42
|
+
GoSquared is the all-in-one growth software for SaaS businesses.
|
|
43
|
+
This gem is for posting data from your application to the GoSquared Tracking API and fetching metrics from the GoSquared Reporting API.
|
|
43
44
|
email:
|
|
44
45
|
- russell@gosquared.com
|
|
45
46
|
executables: []
|