savon_fixes 0.0.2 → 0.0.3.pre.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -1
- data/lib/savon_fixes.rb +1 -0
- data/lib/savon_fixes/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6307a0ca5a6ae970d9439a87f3736fdc88cadcefb5601c0b4c55cfa040f5fea4
|
4
|
+
data.tar.gz: c18e3b53b992708aee5e2b77ed673e734747378e71a1d6a1edc399afde206d23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c69dc1cd9b9edcebc009db9399896f5c4ceaca0aaf7da5f7a6817c7059d184f19f5aaf7233453e0d1d1abfd398db4ea00a2d9357984c30861f7aaba4ff15cc8
|
7
|
+
data.tar.gz: c498ebc4e2024aaa12c2a3a934234e3a044208234c6c08a470acbc4591952e54328e09b82db27d8c9c9c78cc42b96c30418186fbd790e358f4ee2b0afc909bfa
|
data/README.md
CHANGED
@@ -16,12 +16,29 @@ Add in your `Gemfile`
|
|
16
16
|
gem 'savon_fixes'
|
17
17
|
```
|
18
18
|
|
19
|
+
Wherever you require `savon`, add:
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
require 'savon_fixes'
|
23
|
+
```
|
24
|
+
|
25
|
+
So that should end up looking like:
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require 'savon'
|
29
|
+
require 'savon_fixes'
|
30
|
+
```
|
31
|
+
|
19
32
|
# PRs incorporated and bugs fixed
|
20
33
|
|
21
34
|
Currently there is only one fix incorporated. There are many issues filed against this problem as the stalebot shuts them all down.
|
22
35
|
|
23
|
-
- Bugs related to namespacing [#916](https://github.com/savonrb/savon/issues/916), [#899](https://github.com/savonrb/savon/issues/899), [#820](https://github.com/savonrb/savon/issues/820), [#895](https://github.com/savonrb/savon/issues/895)
|
36
|
+
- Bugs related to namespacing [#916](https://github.com/savonrb/savon/issues/916), [#899](https://github.com/savonrb/savon/issues/899), [#820](https://github.com/savonrb/savon/issues/820), [#895](https://github.com/savonrb/savon/issues/895), [#862](https://github.com/savonrb/savon/issues/862) and [#830](https://github.com/savonrb/savon/issues/830) which were all fixed by [#917](https://github.com/savonrb/savon/pull/917)
|
24
37
|
|
25
38
|
# Contributing
|
26
39
|
|
27
40
|
Please create PR and follow the monkey patching approach already taken. Also please ensure there is a working test for your fix and that all the tests continue to pass.
|
41
|
+
|
42
|
+
# Maintainers
|
43
|
+
|
44
|
+
Once all tests are passing, update `lib/savon_fixes/version.rb` to a new version, commit to `master` and the gem will be pushed to rubygems.
|
data/lib/savon_fixes.rb
CHANGED
data/lib/savon_fixes/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: savon_fixes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3.pre.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Oberhuber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: savon
|
@@ -151,9 +151,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
151
151
|
version: '0'
|
152
152
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
153
|
requirements:
|
154
|
-
- - "
|
154
|
+
- - ">"
|
155
155
|
- !ruby/object:Gem::Version
|
156
|
-
version:
|
156
|
+
version: 1.3.1
|
157
157
|
requirements: []
|
158
158
|
rubygems_version: 3.0.3
|
159
159
|
signing_key:
|