Skip to content

Commit fd45b9d

Browse files
gjtorikianciclaudedevin-ai-integration[bot]
authored
feat!: Release OpenAPI spec generated Ruby SDK (#454)
Co-authored-by: ci <ci@workos.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent 8132e48 commit fd45b9d

1,345 files changed

Lines changed: 57003 additions & 26471 deletions

File tree

Some content is hidden

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

.github/workflows/ci.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,16 @@ jobs:
1717
strategy:
1818
matrix:
1919
ruby:
20-
- '3.1'
21-
- '3.2'
20+
- '3.3'
21+
- '3.4'
22+
- '4.0'
2223
steps:
2324
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
24-
- uses: ruby/setup-ruby@675dd7ba1b06c8786a1480d89c384f5620a42647 # v1.281.0
25+
- uses: ruby/setup-ruby@7372622e62b60b3cb750dcd2b9e32c247ffec26a # v1.302.0
2526
with:
2627
ruby-version: ${{ matrix.ruby }}
2728
bundler-cache: true
2829

29-
- name: Rubocop
30+
- name: Test
3031
run: |
31-
bundle exec rubocop
32-
33-
- name: Spec
34-
run: |
35-
bundle exec rspec
32+
bundle exec rake test

.github/workflows/lint.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
pull_request: {}
8+
9+
defaults:
10+
run:
11+
shell: bash
12+
13+
jobs:
14+
standard:
15+
name: Lint
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19+
- uses: ruby/setup-ruby@7372622e62b60b3cb750dcd2b9e32c247ffec26a # v1.302.0
20+
with:
21+
bundler-cache: true
22+
23+
- name: Run Standardrb
24+
run: |
25+
bundle exec standardrb

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2626

2727
- name: Setup Ruby
28-
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
28+
uses: ruby/setup-ruby@7372622e62b60b3cb750dcd2b9e32c247ffec26a # v1.302.0
2929
with:
3030
ruby-version: "3.2"
3131
bundler-cache: true

.oagen-manifest.json

Lines changed: 1015 additions & 0 deletions
Large diffs are not rendered by default.

.rspec

Lines changed: 0 additions & 1 deletion
This file was deleted.

.rubocop.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.rubocop_todo.yml

Lines changed: 0 additions & 94 deletions
This file was deleted.

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.4
1+
3.3.11

.standard.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby_version: 3.3

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

3-
source 'https://rubygems.org'
3+
source "https://rubygems.org"
44

55
gemspec

0 commit comments

Comments
 (0)