my_api_client 0.20.0 → 0.21.0
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 +4 -4
- data/.circleci/config.yml +3 -3
- data/.github/dependabot.yml +32 -0
- data/.rubocop.yml +1 -1
- data/.rubocop_todo.yml +1 -1
- data/CHANGELOG.md +20 -116
- data/Gemfile.lock +38 -24
- data/README.jp.md +7 -4
- data/gemfiles/rails_5.0.gemfile +1 -0
- data/gemfiles/rails_5.1.gemfile +1 -0
- data/gemfiles/rails_5.2.gemfile +1 -0
- data/gemfiles/rails_6.0.gemfile +1 -0
- data/lib/my_api_client/rspec/matchers/be_handled_as_an_error.rb +3 -3
- data/lib/my_api_client/rspec/stub.rb +11 -7
- data/lib/my_api_client/version.rb +1 -1
- data/my_api/Gemfile +1 -1
- data/my_api/Gemfile.lock +68 -69
- data/my_api/public/index.html +2 -2
- data/my_api_client.gemspec +1 -1
- data/rails_app/rails_5.2/Gemfile.lock +67 -61
- data/rails_app/rails_6.0/Gemfile.lock +81 -75
- data/rails_app/rails_6.1/Gemfile.lock +81 -75
- metadata +5 -5
- data/.dependabot/config.yml +0 -34
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: my_api_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ryz310
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -228,9 +228,9 @@ extensions: []
|
|
228
228
|
extra_rdoc_files: []
|
229
229
|
files:
|
230
230
|
- ".circleci/config.yml"
|
231
|
-
- ".dependabot/config.yml"
|
232
231
|
- ".envrc.skeleton"
|
233
232
|
- ".gem_comet.yml"
|
233
|
+
- ".github/dependabot.yml"
|
234
234
|
- ".gitignore"
|
235
235
|
- ".rspec"
|
236
236
|
- ".rubocop.yml"
|
@@ -450,14 +450,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
450
450
|
requirements:
|
451
451
|
- - ">="
|
452
452
|
- !ruby/object:Gem::Version
|
453
|
-
version: 2.
|
453
|
+
version: 2.6.0
|
454
454
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
455
455
|
requirements:
|
456
456
|
- - ">="
|
457
457
|
- !ruby/object:Gem::Version
|
458
458
|
version: '0'
|
459
459
|
requirements: []
|
460
|
-
rubygems_version: 3.2.
|
460
|
+
rubygems_version: 3.2.22
|
461
461
|
signing_key:
|
462
462
|
specification_version: 4
|
463
463
|
summary: The framework of Web API Client
|
data/.dependabot/config.yml
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
version: 1
|
2
|
-
update_configs:
|
3
|
-
- package_manager: "ruby:bundler"
|
4
|
-
directory: "/"
|
5
|
-
update_schedule: "live"
|
6
|
-
default_reviewers:
|
7
|
-
- "ryz310"
|
8
|
-
default_assignees:
|
9
|
-
- "ryz310"
|
10
|
-
default_labels:
|
11
|
-
- "dependabot"
|
12
|
-
automerged_updates:
|
13
|
-
- match:
|
14
|
-
dependency_type: "development"
|
15
|
-
update_type: "all"
|
16
|
-
- match:
|
17
|
-
dependency_type: "production"
|
18
|
-
update_type: "semver:patch"
|
19
|
-
- package_manager: "ruby:bundler"
|
20
|
-
directory: "/my_api"
|
21
|
-
update_schedule: "live"
|
22
|
-
default_reviewers:
|
23
|
-
- "ryz310"
|
24
|
-
default_assignees:
|
25
|
-
- "ryz310"
|
26
|
-
default_labels:
|
27
|
-
- "dependabot"
|
28
|
-
automerged_updates:
|
29
|
-
- match:
|
30
|
-
dependency_type: "development"
|
31
|
-
update_type: "all"
|
32
|
-
- match:
|
33
|
-
dependency_type: "production"
|
34
|
-
update_type: "semver:patch"
|