Skip to content

Commit

Permalink
Merge branch 'master' into readme-relishapp
Browse files Browse the repository at this point in the history
  • Loading branch information
briandunn authored Aug 28, 2024
2 parents 3350c62 + f437653 commit 227bdcd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
rspec-minor-versions: [6, 7, 8, 9, 10, 11, 12, 13]
ruby-versions: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"]
ruby-versions: ["3.1", "3.2", "3.3"]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rspec_3.${{ matrix.rspec-minor-versions }}.gemfile

Expand Down
1 change: 1 addition & 0 deletions flatware.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = ['>= 2.6', '< 3.4']
s.require_paths = ['lib']
s.executables = ['flatware']
s.add_dependency %(drb)
s.add_dependency %(thor), '< 2.0'
# s.metadata['rubygems_mfa_required'] = 'true'
end
3 changes: 2 additions & 1 deletion lib/flatware/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def fan(*command)
exec({ 'TEST_ENV_NUMBER' => i.to_s }, command)
end
end
Process.waitall
success = Process.waitall.all? { |_pid, status| status.success? }
exit success ? 0 : 1
end

desc 'clear', 'kills all flatware processes'
Expand Down

0 comments on commit 227bdcd

Please sign in to comment.