From 0c2f30640a831e0d5751685e94ca6ab6bcce8857 Mon Sep 17 00:00:00 2001 From: Adriano Caloiaro Date: Fri, 30 Jan 2026 11:40:30 -0800 Subject: [PATCH] fix: cleanup --- .gitlab-ci.yml | 26 -------------------------- Gemfile.lock | 2 +- README.md | 8 ++++---- 3 files changed, 5 insertions(+), 31 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 3a253c4..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -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 - diff --git a/Gemfile.lock b/Gemfile.lock index 72742dd..3a6f52d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - kombo_client (0.0.3) + kombo_client (0.0.5) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/README.md b/README.md index e4dd3e6..7dd5c09 100644 --- a/README.md +++ b/README.md @@ -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 repository directory to enable the devenv.