itrp-client 1.0.3 → 1.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 +8 -8
- data/Gemfile.lock +1 -1
- data/lib/itrp/client/version.rb +1 -1
- data/lib/itrp/client.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MGI0YmVkZmE0MjQ3NDNkZGZhYWYyYTU2ZGQyMmY3Mjc3ZDQzY2NiZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YzAxZjUzMGM5NDdjMzM3ODU3NDdkNGVkYzMzMDE1NTk5Y2VkOWY1Yg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZjA1YWE2YzRiYWI2ZDk5NTVlZTBiY2Y1OWUyNDZlYjYyZWQ2ZjJjNjc3MzBi
|
|
10
|
+
ODI0ZDMyMjI0NWY0NDc5NzMxODdjNTdkOWFlMWY0YTNlMDg0NGFkZDYwYTE3
|
|
11
|
+
MmQwYWQ3NzU2MzNiNGNiMjczY2RmZTczODdlZWYzNGZhN2M2OTE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Nzc1M2ZjYTZjZGI1ZDU2NGU2YWQyNTZlMjNiYTM5NTA2ZGRkMTI3NjljNGQ2
|
|
14
|
+
MjFmYTNmZjg4MGYwZGZmODA4MWU4YmIyYjEyMzNlNTNlMGJmOTVlNTZlYTgw
|
|
15
|
+
NjdlZDlkY2FlZWQ2ZjRlZGNkYjAxM2ZhMTg2MmI5OTIxMWJhNTU=
|
data/Gemfile.lock
CHANGED
data/lib/itrp/client/version.rb
CHANGED
data/lib/itrp/client.rb
CHANGED
|
@@ -237,7 +237,8 @@ module Itrp
|
|
|
237
237
|
when :DateTime then value.new_offset(0).iso8601
|
|
238
238
|
when :Date then value.strftime("%Y-%m-%d")
|
|
239
239
|
when :Time then value.strftime("%H:%M")
|
|
240
|
-
|
|
240
|
+
# do not convert arrays in put/post requests as squashing arrays is only used in filtering
|
|
241
|
+
when :Array then escape ? value.map{ |v| typecast(v, escape) }.join(',') : value
|
|
241
242
|
else value.to_s
|
|
242
243
|
end
|
|
243
244
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itrp-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ITRP
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gem_config
|