spot-gps 0.2.7 → 0.2.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 +4 -4
- data/.travis.yml +3 -10
- data/CHANGELOG.md +4 -0
- data/lib/spot-gps/version.rb +1 -1
- data/spec/client_spec.rb +5 -1
- data/spot-gps.gemspec +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73637ff8267bd7f450764f23f996bbc8d7efba0c692434d738acd2488be7e088
|
4
|
+
data.tar.gz: 24e783989b3930e88c0bfa63df67d64c2b9b87c35ebbde3277b065e64c0214fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25d9e9546fc38c9d10a7948dfb74d04fb231a6d5ff5a9f6bdbe874c226a80075a738925f590a59a263edc33a6bc04bffe12db35f736cc07f2fc4aa478ae9ebe2
|
7
|
+
data.tar.gz: 2eca71c32ad00df4302424896c9180f102101a237e96b4448fa1bbacea202c0a98b1c330295b44c141d503c2155225c5d2107c7de10056db1ca38a87e68e75fc
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/lib/spot-gps/version.rb
CHANGED
data/spec/client_spec.rb
CHANGED
@@ -11,7 +11,11 @@ describe SPOT::Client do
|
|
11
11
|
|
12
12
|
context 'when initialised without a feed ID' do
|
13
13
|
let(:feed_id) { nil }
|
14
|
-
|
14
|
+
|
15
|
+
it 'raises a helpful error' do
|
16
|
+
expect { described_class.new(options) }.
|
17
|
+
to raise_error('feed_id is required')
|
18
|
+
end
|
15
19
|
end
|
16
20
|
|
17
21
|
context 'when initialised without a password' do
|
data/spot-gps.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spot-gps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grey Baker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: webmock
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
version: 0.8.9
|
68
68
|
- - "<"
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: '0.
|
70
|
+
version: '0.18'
|
71
71
|
type: :runtime
|
72
72
|
prerelease: false
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -77,7 +77,7 @@ dependencies:
|
|
77
77
|
version: 0.8.9
|
78
78
|
- - "<"
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
version: '0.
|
80
|
+
version: '0.18'
|
81
81
|
description:
|
82
82
|
email: greysteil@gmail.com
|
83
83
|
executables: []
|
@@ -134,8 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
134
|
- !ruby/object:Gem::Version
|
135
135
|
version: '0'
|
136
136
|
requirements: []
|
137
|
-
|
138
|
-
rubygems_version: 2.7.6
|
137
|
+
rubygems_version: 3.0.3
|
139
138
|
signing_key:
|
140
139
|
specification_version: 4
|
141
140
|
summary: A wrapper for the SPOT API
|