esa 2.2.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/esa.gemspec +1 -1
- data/lib/esa/version.rb +1 -1
- metadata +4 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7899d7060029ab35da43d2b9446dda015a783a10dd5265974ef6ecd1638dd97
|
4
|
+
data.tar.gz: 2aad1556b9718825a322fbb00408086826651b3ee740ba56233ef612c51bd10c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3b7d83c6b2600e0b709dfd3238d773ce033bc6a7f1b3bb72eec0bcf8154c4f48e5aabbc2bdb97d2e229d1ce6b4f6cb810639a70664e269791e90c95478162b8
|
7
|
+
data.tar.gz: 25800be1607b379015764a4bb7964b0ac758dc55ed8bce927e16019da0c90091a961c22fee90f49b1f818f7ca03767299a84f6a89aee7ac18ea9f20ea678ea4c
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
nothing
|
4
4
|
|
5
|
+
## 3.0.0 (2025-02-20)
|
6
|
+
- :warning: breaking: [Drop Support for Ruby < 3.1](https://github.com/esaio/esa-ruby/pull/67)
|
7
|
+
- ci: [Tweak CI ruby versions](https://github.com/esaio/esa-ruby/pull/65)
|
8
|
+
|
9
|
+
|
5
10
|
## 2.2.0 (2024-05-30)
|
6
11
|
- fix: [Request to add base64 gem dependency to esa gem](https://github.com/esaio/esa-ruby/pull/64)
|
7
12
|
- ci: [Tweak CI ruby versions](https://github.com/esaio/esa-ruby/pull/65)
|
data/esa.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
18
|
spec.require_paths = ['lib']
|
19
19
|
|
20
|
-
spec.required_ruby_version = ">=
|
20
|
+
spec.required_ruby_version = ">= 3.1.0"
|
21
21
|
|
22
22
|
spec.add_runtime_dependency 'base64', '>= 0.2'
|
23
23
|
spec.add_runtime_dependency 'faraday', '>= 2.0.1', '< 3.0'
|
data/lib/esa/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: esa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fukayatsu
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: base64
|
@@ -182,7 +181,6 @@ dependencies:
|
|
182
181
|
- - "~>"
|
183
182
|
- !ruby/object:Gem::Version
|
184
183
|
version: 3.7.6
|
185
|
-
description:
|
186
184
|
email:
|
187
185
|
- fukayatsu@gmail.com
|
188
186
|
executables: []
|
@@ -205,7 +203,6 @@ homepage: https://github.com/esaio/esa-ruby/
|
|
205
203
|
licenses:
|
206
204
|
- MIT
|
207
205
|
metadata: {}
|
208
|
-
post_install_message:
|
209
206
|
rdoc_options: []
|
210
207
|
require_paths:
|
211
208
|
- lib
|
@@ -213,15 +210,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
213
210
|
requirements:
|
214
211
|
- - ">="
|
215
212
|
- !ruby/object:Gem::Version
|
216
|
-
version:
|
213
|
+
version: 3.1.0
|
217
214
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
218
215
|
requirements:
|
219
216
|
- - ">="
|
220
217
|
- !ruby/object:Gem::Version
|
221
218
|
version: '0'
|
222
219
|
requirements: []
|
223
|
-
rubygems_version: 3.
|
224
|
-
signing_key:
|
220
|
+
rubygems_version: 3.6.2
|
225
221
|
specification_version: 4
|
226
222
|
summary: esa API v1 client library, written in Ruby
|
227
223
|
test_files: []
|