Skip to content
Merged
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
2 changes: 1 addition & 1 deletion spec/unit/lib/temporal/activity_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def execute(a, b:, c:)
it 'does not raise an ArgumentError' do
expect {
described_class.execute_in_context(context, input)
}.not_to raise_error(ArgumentError, 'wrong number of arguments (given 2, expected 1; required keywords: b, c)')
}.not_to raise_error
end

it 'returns #execute result' do
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/lib/temporal/workflow_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def execute(a, b:, c:)
it 'does not raise an ArgumentError' do
expect {
described_class.execute_in_context(ctx, input)
}.not_to raise_error(ArgumentError, 'wrong number of arguments (given 2, expected 1; required keywords: b, c)')
}.not_to raise_error
end
end
end
Expand Down
1 change: 1 addition & 0 deletions temporal.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.files = Dir["{lib,rbi}/**/*.*"] + %w(temporal.gemspec Gemfile LICENSE README.md)

spec.add_dependency 'base64'
spec.add_dependency 'grpc'
spec.add_dependency 'oj'

Expand Down