File tree Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ Gemfile.lock
66temporalio /test /golangworker /golangworker
77temporalio /.yardoc
88temporalio /doc
9- temporalio /pkg
9+ temporalio /pkg
10+ temporalio /lib /temporalio /internal /bridge /temporalio_bridge.bundle
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ inherit_mode:
44
55AllCops :
66 NewCops : enable
7- TargetRubyVersion : 3.1
7+ TargetRubyVersion : 3.2
88 SuggestExtensions : false
99 Exclude :
1010 - ext/**/*
@@ -18,11 +18,6 @@ AllCops:
1818# Keep cop rule settings in alphabetical order. For each rule setting, provide
1919# justification for the change from default.
2020
21- # Temporarily disabled per https://github.com/rake-compiler/rake-compiler-dock/issues/145#issuecomment-2596848639
22- # until that is fixed
23- Gemspec/RequiredRubyVersion :
24- Enabled : false
25-
2621# We want our classes in a certain order
2722Layout/ClassStructure :
2823 Enabled : true
@@ -105,4 +100,4 @@ Style/RequireOrder:
105100
106101# We are ok with large amount of keyword args
107102Metrics/ParameterLists :
108- CountKeywordArgs : false
103+ CountKeywordArgs : false
Original file line number Diff line number Diff line change 1+ ruby 3.3.7
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ Gem::Specification.new do |spec|
2323 spec . require_paths = [ 'lib' ]
2424 spec . extensions = [ 'ext/Cargo.toml' ]
2525 spec . metadata [ 'rubygems_mfa_required' ] = 'true'
26+ spec . required_ruby_version = '>= 3.2.0'
2627
2728 spec . add_dependency 'google-protobuf' , '>= 3.25.0'
2829 spec . add_dependency 'logger'
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33require 'opentelemetry/sdk'
4- require 'set'
54require 'temporalio/contrib/open_telemetry'
65require 'test'
76
You can’t perform that action at this time.
0 commit comments