Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
apparently i don't run all tests in all platforms locally
  • Loading branch information
rarruda committed Nov 15, 2022
1 parent 53a8e9f commit e4b62af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Steepfile
Expand Up @@ -5,6 +5,7 @@ target :lib do

check "lib/unleash/client.rb"
check "lib/unleash/context.rb"
check "lib/unleash/variant.rb"
check "lib/unleash/scheduled_executor.rb"

ignore "lib/unleash/bootstrap"
Expand Down
6 changes: 3 additions & 3 deletions unleash-client.gemspec
Expand Up @@ -35,9 +35,9 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "simplecov", "~> 0.21.2"
spec.add_development_dependency "simplecov-lcov", "~> 0.8.0"

# NOTE: only require rbs/steep in supported ruby versions. In EOL ruby, just ignore.
# rubocop:todo Gemspec/RubyVersionGlobalsUsage
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.6')
# NOTE: only require rbs/steep in supported ruby versions. In EOL ruby/jruby, just ignore.
# rubocop:disable Gemspec/RubyVersionGlobalsUsage
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.6') && RUBY_ENGINE != 'jruby'
spec.add_development_dependency "rbs", "~> 2.7"
spec.add_development_dependency "steep", "~> 1.2"
end
Expand Down

0 comments on commit e4b62af

Please sign in to comment.