faraday-mashify 0.1.1 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16028f627eeec2f7ebdfc70f1f7edc08f19cdaa5d09329db55c428e067469d53
4
- data.tar.gz: ce7c6975c2a55e00ec6882066c7c276eecef3f6a88efefe9b418ee872bedd130
3
+ metadata.gz: 713fdd5e1289293e73a6badb72aad025e996389005ad3b4bdf74a2b1fdbee23f
4
+ data.tar.gz: 7420b28b97e0320695920403f0a679ac042f133880ddb5185414eca34ede825f
5
5
  SHA512:
6
- metadata.gz: b5aa61bb4526bb6d6bfb660edf0be29f9c365f82f359b3ea2277aaac3ea09005ad56f356e96d0367aff8606f5859c217b6250353216166a055bb51264a1e63df
7
- data.tar.gz: 05bb04568a780f2994616ca05ff6116cee18f697b7e4e929ff2995a27590cc7dd88b48937388c809dab7538099db60202b6b88182f7a81fb20c2e1b97a96a2aa
6
+ metadata.gz: 46e2b44f852718f3ec4f66d611a509bbf24785601a48608cf1fadcf14f3045dc778749441ac8b1c125a18bed504f0232a98557d37f6aefbfb8045aeba5d11f75
7
+ data.tar.gz: c04918f553128fd02d2fcce2770965e0069881d491b3e91386d85856548340640787e00bfcf6c8fbaf2380528cc001d832f2100906deeb882e5b1d34a49b5103
data/CHANGELOG.md CHANGED
@@ -1,9 +1,24 @@
1
1
  # Changelog
2
2
 
3
3
  ## Unreleased
4
- [full changelog](http://github.com/sue445/faraday-mashify/compare/v0.1.1...main)
4
+ [full changelog](http://github.com/sue445/faraday-mashify/compare/v1.0.1...main)
5
5
 
6
- ## 0.1.1
6
+ ## [v1.0.1](https://github.com/sue445/faraday-mashify/releases/tag/v1.0.1)
7
+ [full changelog](http://github.com/sue445/faraday-mashify/compare/v1.0.0...v1.0.1)
8
+
9
+ * Release gem from GitHub Actions
10
+ * https://github.com/sue445/faraday-mashify/pull/27
11
+
12
+ ## [v1.0.0](https://github.com/sue445/faraday-mashify/releases/tag/v1.0.0)
13
+
14
+ [full changelog](http://github.com/sue445/faraday-mashify/compare/v0.1.1...v1.0.0)
15
+
16
+ * :bomb: **[BREAKING CHANGE]** Requires Ruby 2.7+
17
+ * https://github.com/sue445/faraday-mashify/pull/22
18
+ * Update rubocop gems
19
+ * https://github.com/sue445/faraday-mashify/pull/21
20
+
21
+ ## [v0.1.1](https://github.com/sue445/faraday-mashify/releases/tag/v0.1.1)
7
22
  [full changelog](http://github.com/sue445/faraday-mashify/compare/v0.1.0...v0.1.1)
8
23
 
9
24
  * Fixed an error when not requiring `faraday` before requiring `faraday-mashify`
@@ -11,5 +26,5 @@
11
26
  * Deploy yard to Pages
12
27
  * https://github.com/sue445/faraday-mashify/pull/8
13
28
 
14
- ## 0.1.0
29
+ ## [v0.1.0](https://github.com/sue445/faraday-mashify/releases/tag/v0.1.0)
15
30
  * Initial release.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Faraday Mashify
2
2
 
3
- [![GitHub Workflow Status](https://img.shields.io/github/workflow/status/sue445/faraday-mashify/CI)](https://github.com/sue445/faraday-mashify/actions?query=branch%3Amain)
3
+ [![CI](https://github.com/sue445/faraday-mashify/actions/workflows/ci.yaml/badge.svg)](https://github.com/sue445/faraday-mashify/actions/workflows/ci.yaml)
4
4
  [![Gem](https://img.shields.io/gem/v/faraday-mashify.svg?style=flat-square)](https://rubygems.org/gems/faraday-mashify)
5
5
  [![License](https://img.shields.io/github/license/sue445/faraday-mashify.svg?style=flat-square)](LICENSE.md)
6
6
 
@@ -18,7 +18,7 @@ module Faraday
18
18
  # @param options [Hash]
19
19
  # @option options [Class] :mash_class Responses are wrapped in this class (default is `::Hashie::Mash`)
20
20
  def initialize(app = nil, options = {})
21
- super(app, options)
21
+ super
22
22
  self.mash_class = options[:mash_class] || self.class.mash_class || ::Hashie::Mash
23
23
  end
24
24
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Faraday
4
4
  module Mashify
5
- VERSION = '0.1.1'
5
+ VERSION = '1.0.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faraday-mashify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2022-10-01 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: faraday
@@ -128,28 +127,42 @@ dependencies:
128
127
  requirements:
129
128
  - - "~>"
130
129
  - !ruby/object:Gem::Version
131
- version: 1.24.0
130
+ version: '1.74'
132
131
  type: :development
133
132
  prerelease: false
134
133
  version_requirements: !ruby/object:Gem::Requirement
135
134
  requirements:
136
135
  - - "~>"
137
136
  - !ruby/object:Gem::Version
138
- version: 1.24.0
137
+ version: '1.74'
138
+ - !ruby/object:Gem::Dependency
139
+ name: rubocop_auto_corrector
140
+ requirement: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ type: :development
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ">="
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
139
152
  - !ruby/object:Gem::Dependency
140
153
  name: rubocop-packaging
141
154
  requirement: !ruby/object:Gem::Requirement
142
155
  requirements:
143
156
  - - "~>"
144
157
  - !ruby/object:Gem::Version
145
- version: 0.5.0
158
+ version: '0.6'
146
159
  type: :development
147
160
  prerelease: false
148
161
  version_requirements: !ruby/object:Gem::Requirement
149
162
  requirements:
150
163
  - - "~>"
151
164
  - !ruby/object:Gem::Version
152
- version: 0.5.0
165
+ version: '0.6'
153
166
  - !ruby/object:Gem::Dependency
154
167
  name: rubocop-performance
155
168
  requirement: !ruby/object:Gem::Requirement
@@ -170,14 +183,14 @@ dependencies:
170
183
  requirements:
171
184
  - - "~>"
172
185
  - !ruby/object:Gem::Version
173
- version: '2.0'
186
+ version: '3.5'
174
187
  type: :development
175
188
  prerelease: false
176
189
  version_requirements: !ruby/object:Gem::Requirement
177
190
  requirements:
178
191
  - - "~>"
179
192
  - !ruby/object:Gem::Version
180
- version: '2.0'
193
+ version: '3.5'
181
194
  description: 'Faraday middleware for wrapping responses into Hashie::Mash.
182
195
 
183
196
  '
@@ -198,13 +211,12 @@ licenses:
198
211
  - MIT
199
212
  metadata:
200
213
  bug_tracker_uri: https://github.com/sue445/faraday-mashify/issues
201
- changelog_uri: https://github.com/sue445/faraday-mashify/blob/v0.1.1/CHANGELOG.md
214
+ changelog_uri: https://github.com/sue445/faraday-mashify/blob/v1.0.1/CHANGELOG.md
202
215
  documentation_uri: https://sue445.github.io/faraday-mashify/
203
216
  homepage_uri: https://github.com/sue445/faraday-mashify
204
217
  source_code_uri: https://github.com/sue445/faraday-mashify
205
218
  wiki_uri: https://github.com/sue445/faraday-mashify/wiki
206
219
  rubygems_mfa_required: 'true'
207
- post_install_message:
208
220
  rdoc_options: []
209
221
  require_paths:
210
222
  - lib
@@ -212,7 +224,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
212
224
  requirements:
213
225
  - - ">="
214
226
  - !ruby/object:Gem::Version
215
- version: '2.6'
227
+ version: '2.7'
216
228
  - - "<"
217
229
  - !ruby/object:Gem::Version
218
230
  version: '4'
@@ -222,8 +234,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
234
  - !ruby/object:Gem::Version
223
235
  version: '0'
224
236
  requirements: []
225
- rubygems_version: 3.3.3
226
- signing_key:
237
+ rubygems_version: 3.6.7
227
238
  specification_version: 4
228
239
  summary: Faraday middleware for wrapping responses into Hashie::Mash
229
240
  test_files: []