Feat/add ruby sdk (#583)

This commit is contained in:
crazywoola
2023-07-18 10:18:58 +08:00
committed by GitHub
parent ecd6cbaee6
commit cb6e73347e
15 changed files with 460 additions and 2 deletions

16
sdks/ruby-client/Rakefile Normal file
View File

@@ -0,0 +1,16 @@
# frozen_string_literal: true
require "bundler/gem_tasks"
require "rake/testtask"
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
end
require "rubocop/rake_task"
RuboCop::RakeTask.new
task default: %i[test rubocop]