riq 1.2.5 → 1.2.6
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 +2 -1
- data/lib/riq.rb +7 -1
- data/riq.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d947d66d81ff76b29e875842b01c7635f4d680c
|
|
4
|
+
data.tar.gz: a9dcfb30c97e6c3a5eb86593a695c94570175104
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 955aac7a05dc2cfa8b0b33af6bb7c141daa3200e49ba94cc123908b67585f25adf1d2c81a1e740b581bc2c5d502f3a4c0874195389f184d708c35d2d05bf88b5
|
|
7
|
+
data.tar.gz: b61699f16b13c1845d027de289874e22cc2a73b10a00f374850064f25d313f790de98aec478b354213dd1756695175860865db81736e80a48363c9a5eb80513e
|
data/.travis.yml
CHANGED
|
@@ -5,9 +5,10 @@ rvm:
|
|
|
5
5
|
- 2.0.0
|
|
6
6
|
- 2.1.7
|
|
7
7
|
- 2.2.3
|
|
8
|
+
- 2.3.0
|
|
8
9
|
install: bundle install
|
|
9
10
|
script: rake test
|
|
10
11
|
notifications:
|
|
11
12
|
email:
|
|
12
13
|
on_success: never
|
|
13
|
-
on_failure: always # the default, but good to mark here
|
|
14
|
+
on_failure: always # the default, but good to mark here
|
data/lib/riq.rb
CHANGED
|
@@ -59,7 +59,13 @@ module RIQExtensions
|
|
|
59
59
|
else
|
|
60
60
|
r = [{raw: v.to_s}]
|
|
61
61
|
end
|
|
62
|
-
|
|
62
|
+
|
|
63
|
+
# this is the only user-visible snake_case key supplied by our api and it needs to stay that way
|
|
64
|
+
if k == :primary_contact
|
|
65
|
+
o[k] = r
|
|
66
|
+
else
|
|
67
|
+
o[k.to_cam] = r
|
|
68
|
+
end
|
|
63
69
|
end
|
|
64
70
|
o
|
|
65
71
|
end
|
data/riq.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Brownman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|