Skip to content

Commit 336cafa

Browse files
committed
Generate automatically by OpenAPI schemata (#337)
## Description It automatically generates Ruby client files and RBS files, which are Ruby's official type information. We use the following. - schemata from https://github.com/line/line-openapi - https://github.com/OpenAPITools/openapi-generator - https://github.com/PebbleTemplates/pebble ## Diff This enables the following. - SDK support for several previously unsupported endpoints - Programming with RBS type support in IDEs and other applications is becoming possible. - Improved maintainability in the future - Major version upgrade to v2 And we have also implemented our webhook parser to deserialize webhooks to generate classes automatically. ## Old version The existing code will remain available, but a deprecation warning will be issued. ## Scope of this PR To reduce the burden of review, the following items are outside the scope of this PR. We plan to release a PR immediately after merging this PR and then release it as 2.0.0. - GitHub Actions - Automatic Generation - Release to RubyGems ## Linked issues This PR resolves several issues, but we will link to them later.
1 parent 049f08d commit 336cafa

File tree

780 files changed

+32404
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

780 files changed

+32404
-32
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/.bundle/
22
/.yardoc
3-
/Gemfile.lock
43
/_yardoc/
54
/coverage/
65
/doc/

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "line-openapi"]
2+
path = line-openapi
3+
url = [email protected]:line/line-openapi.git

.openapi-generator-ignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

.openapi-generator/FILES

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.openapi-generator-ignore

.openapi-generator/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
unset

.rubocop.yml

+22
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ AllCops:
22
TargetRubyVersion: 2.4
33
Exclude:
44
- 'examples/**/*'
5+
- 'lib/line/bot/v1/**/*'
6+
- 'lib/line/bot/v2/channel_access_token/**/*'
7+
- 'lib/line/bot/v2/insight/**/*'
8+
- 'lib/line/bot/v2/liff/**/*'
9+
- 'lib/line/bot/v2/manage_audience/**/*'
10+
- 'lib/line/bot/v2/messaging_api/**/*'
11+
- 'lib/line/bot/v2/module/**/*'
12+
- 'lib/line/bot/v2/module_attach/**/*'
13+
- 'lib/line/bot/v2/shop/**/*'
14+
- 'lib/line/bot/v2/webhook/**/*'
515
NewCops: disable
616

717
Gemspec/RequiredRubyVersion:
@@ -39,6 +49,10 @@ Style/StringConcatenation:
3949
Enabled: false
4050
Style/RedundantAssignment:
4151
Enabled: false
52+
Style/MultilineIfModifier:
53+
Enabled: false
54+
Style/SafeNavigation:
55+
Enabled: false
4256

4357
Naming/HeredocDelimiterNaming:
4458
Enabled: false
@@ -59,6 +73,12 @@ Metrics/MethodLength:
5973
Enabled: false
6074
Metrics/ClassLength:
6175
Enabled: false
76+
Metrics/AbcSize:
77+
Enabled: false
78+
Metrics/CyclomaticComplexity:
79+
Enabled: false
80+
Metrics/PerceivedComplexity:
81+
Enabled: false
6282

6383
Layout/LineLength:
6484
Max: 200
@@ -74,6 +94,8 @@ Layout/ExtraSpacing:
7494
Enabled: false
7595
Layout/SpaceAroundOperators:
7696
Enabled: false
97+
Layout/DotPosition:
98+
Enabled: false
7799

78100
Lint/UnusedBlockArgument:
79101
Enabled: false

Gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@ source 'https://rubygems.org'
22

33
gemspec
44

5+
gem 'multipart-post', '~> 2.4.1', require: false
6+
57
group :development, :test do
68
# ref: http://docs.rubocop.org/en/latest/installation/
79
gem 'rubocop', '~> 1.70.0', require: false
810
gem 'yard', '~> 0.9.20'
911
end
12+
13+
group :test do
14+
gem 'rspec', '~> 3.10.0'
15+
gem 'webmock', '~> 3.14.0'
16+
end

Gemfile.lock

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
PATH
2+
remote: .
3+
specs:
4+
line-bot-api (2.0.0)
5+
multipart-post (~> 2.4.1)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
addressable (2.8.7)
11+
public_suffix (>= 2.0.2, < 7.0)
12+
ast (2.4.2)
13+
bigdecimal (3.1.9)
14+
crack (1.0.0)
15+
bigdecimal
16+
rexml
17+
diff-lcs (1.5.1)
18+
hashdiff (1.1.2)
19+
json (2.9.1)
20+
language_server-protocol (3.17.0.3)
21+
multipart-post (2.4.1)
22+
parallel (1.26.3)
23+
parser (3.3.7.0)
24+
ast (~> 2.4.1)
25+
racc
26+
public_suffix (6.0.1)
27+
racc (1.8.1)
28+
rainbow (3.1.1)
29+
rake (13.2.1)
30+
regexp_parser (2.10.0)
31+
rexml (3.4.0)
32+
rspec (3.10.0)
33+
rspec-core (~> 3.10.0)
34+
rspec-expectations (~> 3.10.0)
35+
rspec-mocks (~> 3.10.0)
36+
rspec-core (3.10.2)
37+
rspec-support (~> 3.10.0)
38+
rspec-expectations (3.10.2)
39+
diff-lcs (>= 1.2.0, < 2.0)
40+
rspec-support (~> 3.10.0)
41+
rspec-mocks (3.10.3)
42+
diff-lcs (>= 1.2.0, < 2.0)
43+
rspec-support (~> 3.10.0)
44+
rspec-support (3.10.3)
45+
rubocop (1.70.0)
46+
json (~> 2.3)
47+
language_server-protocol (>= 3.17.0)
48+
parallel (~> 1.10)
49+
parser (>= 3.3.0.2)
50+
rainbow (>= 2.2.2, < 4.0)
51+
regexp_parser (>= 2.9.3, < 3.0)
52+
rubocop-ast (>= 1.36.2, < 2.0)
53+
ruby-progressbar (~> 1.7)
54+
unicode-display_width (>= 2.4.0, < 4.0)
55+
rubocop-ast (1.37.0)
56+
parser (>= 3.3.1.0)
57+
ruby-progressbar (1.13.0)
58+
unicode-display_width (3.1.4)
59+
unicode-emoji (~> 4.0, >= 4.0.4)
60+
unicode-emoji (4.0.4)
61+
webmock (3.14.0)
62+
addressable (>= 2.8.0)
63+
crack (>= 0.3.2)
64+
hashdiff (>= 0.4.0, < 2.0.0)
65+
yard (0.9.37)
66+
67+
PLATFORMS
68+
arm64-darwin-22
69+
70+
DEPENDENCIES
71+
addressable (~> 2.3)
72+
line-bot-api!
73+
multipart-post (~> 2.4.1)
74+
rake (~> 13.0)
75+
rspec (~> 3.10.0)
76+
rubocop (~> 1.70.0)
77+
webmock (~> 3.14.0)
78+
yard (~> 0.9.20)
79+
80+
BUNDLED WITH
81+
2.4.10

0 commit comments

Comments
 (0)