-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update API client with OpenAPI Generator v7
- Loading branch information
Showing
376 changed files
with
42,864 additions
and
5,427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.ruby: &ruby | ||
variables: | ||
LANG: "C.UTF-8" | ||
before_script: | ||
- ruby -v | ||
- bundle config set --local deployment true | ||
- bundle install -j $(nproc) | ||
parallel: | ||
matrix: | ||
- RUBY_VERSION: ['2.7', '3.0', '3.1'] | ||
image: "ruby:$RUBY_VERSION" | ||
cache: | ||
paths: | ||
- vendor/ruby | ||
key: 'ruby-$RUBY_VERSION' | ||
|
||
gem: | ||
extends: .ruby | ||
script: | ||
- bundle exec rspec | ||
- bundle exec rake build | ||
- bundle exec rake install | ||
artifacts: | ||
paths: | ||
- pkg/*.gem | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,3 @@ | |
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md | ||
|
||
.gitignore |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.0-SNAPSHOT | ||
7.2.0-SNAPSHOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: ruby | ||
cache: bundler | ||
rvm: | ||
- 2.7 | ||
- 3.0 | ||
- 3.1 | ||
script: | ||
- bundle install --path vendor/bundle | ||
- bundle exec rspec | ||
- gem build color_me_shop.gemspec | ||
- gem install ./color_me_shop-1.1.0.gem |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.