symgate 0.2.3 → 0.2.4

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
  SHA1:
3
- metadata.gz: ff7740ff5f9152bd4f3cb84514f5eef0321dcd83
4
- data.tar.gz: c448385487c3563ec1c8ca38c8ed9f24ccd48caf
3
+ metadata.gz: d3bc2e286aa8d3b0c290824c2e111a6f352f613a
4
+ data.tar.gz: 9c824ccaf6cbd0e023f4379b5e08435ba974410a
5
5
  SHA512:
6
- metadata.gz: cf1198a9ffa373baf1c06c9ab1dfbb331919124d85fc223534add2b758178224363688d6cb58e90e6c66bf6b4164048e2e6a8db94cadd4705068433234b71f69
7
- data.tar.gz: 672fac7436ee70a62e0587e8be9aec6c3e9d51ff17105a18a24402192111abba7a41ea30ecbdd63bdacd79eb283eb114c838c6479020160d1eec4f98ea9a4fae
6
+ metadata.gz: 948217c98271b10f8128ab5171a44ceba95bfc25f8d7f75d0448eb82d7766072a19b344f28935bca71a83063fba8b8142d60e1cf75bdaf632e9ba9e4b3d64e4e
7
+ data.tar.gz: ac4e485c6db9baccb0262989fcd965b0f4657ff7886f8188c85b02794b4de2f3b95c82a0ecee99053a1486095a31e271defc3d2badf5dbf459b6450206a9d61f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.2.4 (2018-10-25)
2
+
3
+ Make attachments option in get_wordlist_entries truly optional and update integration tests to
4
+ work correctly with the latest symboliser
5
+
1
6
  ## 0.2.3 (2018-10-23)
2
7
 
3
8
  Fix for invalid SOAP XML due to duplicate attributes (issue #3)
@@ -1,3 +1,3 @@
1
1
  module Symgate
2
- VERSION = '0.2.3'.freeze
2
+ VERSION = '0.2.4'.freeze
3
3
  end
@@ -77,7 +77,7 @@ module Symgate
77
77
  check_for_multiple_opts(%i[match entry], opts)
78
78
 
79
79
  response = savon_request(:get_wordlist_entries) do |soap|
80
- soap.message(wordlistid: uuid, getattachments: opts[:attachments])
80
+ soap.message(wordlistid: uuid, getattachments: !!opts[:attachments])
81
81
  soap[:message][:match] = { matchstring: opts[:match] } if opts.include? :match
82
82
  soap[:message][:match] = { entryid: opts[:entry] } if opts.include? :entry
83
83
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: symgate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Detheridge
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-23 00:00:00.000000000 Z
11
+ date: 2018-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler