mirror of
https://github.com/acaloiaro/kombo-ruby-sdk
synced 2026-07-21 10:12:21 +00:00
fix: cleanup
This commit is contained in:
parent
d6c3ffbf73
commit
0c2f30640a
3 changed files with 5 additions and 31 deletions
|
|
@ -1,26 +0,0 @@
|
||||||
.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
|
|
||||||
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
kombo_client (0.0.3)
|
kombo_client (0.0.5)
|
||||||
typhoeus (~> 1.0, >= 1.0.1)
|
typhoeus (~> 1.0, >= 1.0.1)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
# Kombo.dev Ruby SDK Generator
|
# Kombo.dev Ruby SDK
|
||||||
|
|
||||||
This experimental repository generates a Ruby SDK from [Kombo's OpenAPI spec](https://api.kombo.dev/openapi.json).
|
This is a Ruby SDK from [Kombo's OpenAPI spec](https://api.kombo.dev/openapi.json).
|
||||||
|
|
||||||
This is not production-ready.
|
## Generate SDK
|
||||||
|
|
||||||
## Generate code
|
The SDK is generated from OpenAPI specifications.
|
||||||
|
|
||||||
This repo uses a nix [devenv](devenv.sh) to generate code. With `direnv` installed, run `direnv allow` inside of this
|
This repo uses a nix [devenv](devenv.sh) to generate code. With `direnv` installed, run `direnv allow` inside of this
|
||||||
repository directory to enable the devenv.
|
repository directory to enable the devenv.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue