Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
---
BUNDLE_PATH: "/home/runner/work/client-ruby/client-ruby/vendor/bundle"
BUNDLE_PATH: "./vendor"
BUNDLE_IGNORE_FUNDING_REQUESTS: "true"
BUNDLE_JOBS: "4"
BUNDLE_DEPLOYMENT: "true"
3 changes: 3 additions & 0 deletions .reek.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
exclude_paths:
- lib/zitadel/client/models/**/*.rb
- lib/zitadel/client/api/**/*.rb
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ RUN rm -f *.gem
RUN gem build *.gemspec
RUN gem install *.gem
RUN ruby -e "require 'zitadel_client'"
CMD ["irb"]
CMD ["irb", "-r", "zitadel_client"]
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ gem 'zeitwerk'

group :development do
gem 'rbs'
gem 'reek', require: false
gem 'rubocop', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rake', require: false
Expand Down
38 changes: 37 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,34 @@ GEM
multi_json
dotenv (3.1.8)
drb (2.2.1)
dry-configurable (1.2.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-core (1.0.2)
concurrent-ruby (~> 1.0)
logger
zeitwerk (~> 2.6)
dry-inflector (1.1.0)
dry-initializer (3.1.1)
dry-logic (1.5.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-schema (1.13.4)
concurrent-ruby (~> 1.0)
dry-configurable (~> 1.0, >= 1.0.1)
dry-core (~> 1.0, < 2)
dry-initializer (~> 3.0)
dry-logic (>= 1.4, < 2)
dry-types (>= 1.7, < 2)
zeitwerk (~> 2.6)
dry-types (1.7.2)
bigdecimal (~> 3.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0)
dry-inflector (~> 1.0)
dry-logic (~> 1.4)
zeitwerk (~> 2.6)
ethon (0.16.0)
ffi (>= 1.15.0)
excon (1.2.5)
Expand All @@ -48,7 +76,8 @@ GEM
logger
faraday-net_http (3.4.0)
net-http (>= 0.5.0)
ffi (1.17.1)
ffi (1.17.1-arm64-darwin)
ffi (1.17.1-x86_64-linux-gnu)
fileutils (1.7.3)
hashie (5.0.0)
i18n (1.14.7)
Expand Down Expand Up @@ -96,6 +125,12 @@ GEM
ffi (~> 1.0)
rbs (3.6.1)
logger
reek (6.4.0)
dry-schema (~> 1.13.0)
logger (~> 1.6)
parser (~> 3.3.0)
rainbow (>= 2.0, < 4.0)
rexml (~> 3.1)
regexp_parser (2.10.0)
rexml (3.4.1)
rubocop (1.75.5)
Expand Down Expand Up @@ -177,6 +212,7 @@ DEPENDENCIES
oauth2
rake
rbs
reek
rubocop
rubocop-minitest
rubocop-rake
Expand Down
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ require 'rake/testtask'
require 'rdoc/task'
require 'steep/rake_task'
require 'rubocop/rake_task'
require 'reek/rake/task'

RuboCop::RakeTask.new(:rubocop) do |task|
task.plugins << 'rubocop-minitest'
Expand All @@ -31,4 +32,6 @@ Rake::TestTask.new(:test) do |task|
task.verbose = true
end

Reek::Rake::Task.new

task default: :test
Loading