wasabi 3.6.0 → 3.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -4
- data/lib/wasabi/version.rb +1 -1
- data/spec/spec_helper.rb +1 -5
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5dd6fa7035a36a15b080db50c141fc988012a66aae5e153d527c50f1a631821
|
4
|
+
data.tar.gz: 9c16e0fe6c87e39147804fe18b84c0f231a634ba0d3b868f16779383591961ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a902556350c6f5bf228a0c175e800a017c53085cb3b515b45a11f3fa936235459059d31be84b2311664ce3c218963aad2a0818a3451f472c63c69b62aa1ac146
|
7
|
+
data.tar.gz: 7c5e3d822b8532869f5ea2f61187f3bc5dc7701ce6d64a15bcffc6a4603746634bef12d31dc7c011fb0af05b430a1a2ee441c2632f0d92ad040ef48205a623aa
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,15 @@
|
|
1
|
+
# 3.6.1 (2020-08-27)
|
2
|
+
|
3
|
+
- Fix: Repair unlinked Markdown in the CHANGELOG
|
4
|
+
- Add: Link to the CHANGELOG in the RubyGems.org metadata
|
5
|
+
- Add: Link to the Rubydocs.info documentation in the RubyGems.org metadata
|
6
|
+
|
1
7
|
# 3.6.0 (2020-08-27)
|
2
8
|
|
3
|
-
- Add: Support RPC-encoded WSDL (#63, @fernandes)
|
4
|
-
- Fix: Depend on [addressable](https://github.com/sporkmonger/addressable), for unescape to avoid a Ruby warning (#81, @chaymaeBZ, @bvicenzo)
|
5
|
-
-
|
6
|
-
- Change: Reduced size of gem by focusing the files list (#89, @utkarsh2102)
|
9
|
+
- Add: Support RPC-encoded WSDL ([#63](https://github.com/savonrb/wasabi/pull/63), [@fernandes][])
|
10
|
+
- Fix: Depend on [addressable](https://github.com/sporkmonger/addressable), for unescape to avoid a Ruby warning ([#81](https://github.com/savonrb/wasabi/pull/81) , [@chaymaeBZ][], [@bvicenzo][])
|
11
|
+
- Fix: [#59](https://github.com/savonrb/wasabi/issue/59) Turn `String` monkeypatches into `Wasabi` class methods ([@tjarratt][]) (released this version)
|
12
|
+
- Change: Reduced size of gem by focusing the files list ([#89](https://github.com/savonrb/wasabi/pull/89), [@utkarsh2102][])
|
7
13
|
- Remove: No longer tested on Rubinius
|
8
14
|
|
9
15
|
# 3.5.1 (2015-05-18)
|
@@ -128,3 +134,9 @@ NB: This version was never released to RubyGems.org.
|
|
128
134
|
|
129
135
|
* Initial version extracted from the [Savon](http://rubygems.org/gems/savon) library.
|
130
136
|
Use it to build your own SOAP client and help to improve it!
|
137
|
+
|
138
|
+
[@fernandes]: https://github.com/fernandes
|
139
|
+
[@utkarsh2102]: https://github.com/utkarsh2102
|
140
|
+
[@tjarratt]: https://github.com/tjarratt
|
141
|
+
[@chaymaeBZ]: https://github.com/chaymaeBZ
|
142
|
+
[@bvicenzo]: https://github.com/bvicenzo
|
data/lib/wasabi/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -6,11 +6,7 @@ Bundler.require :default, :development
|
|
6
6
|
unless RUBY_PLATFORM =~ /java/
|
7
7
|
require "simplecov"
|
8
8
|
require "coveralls"
|
9
|
-
|
10
|
-
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
11
|
-
SimpleCov.start do
|
12
|
-
add_filter "spec"
|
13
|
-
end
|
9
|
+
Coveralls.wear!
|
14
10
|
end
|
15
11
|
|
16
12
|
support_files = File.expand_path("spec/support/**/*.rb")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wasabi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Harrington
|
@@ -151,7 +151,11 @@ files:
|
|
151
151
|
homepage: https://github.com/savonrb/wasabi
|
152
152
|
licenses:
|
153
153
|
- MIT
|
154
|
-
metadata:
|
154
|
+
metadata:
|
155
|
+
changelog_uri: https://github.com/savonrb/wasabi/blob/master/CHANGELOG.md
|
156
|
+
documentation_uri: https://www.rubydoc.info/gems/wasabi/3.6.1
|
157
|
+
source_code_uri: https://github.com/savonrb/wasabi
|
158
|
+
bug_tracker_uri: https://github.com/savonrb/wasabi/issues
|
155
159
|
post_install_message:
|
156
160
|
rdoc_options: []
|
157
161
|
require_paths:
|