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.