Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ temporalio/.yardoc
temporalio/doc
temporalio/pkg
temporalio/lib/temporalio/internal/bridge/temporalio_bridge.bundle
temporalio/.bundle
.idea/
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ class GreetingWorkflow < Temporalio::Workflow::Definition
# on wait_condition calls, so Cancellation object doesn't need to be passed
# explicitly.
Temporalio::Workflow.wait_condition { @greeting_params_update || @complete }

# If there was an update, exchange and rerun. If it's _only_ a complete, finish
# workflow with the greeting.
if @greeting_params_update
Expand Down Expand Up @@ -1203,9 +1203,11 @@ Prerequisites:

First, install dependencies:

bundle install
# Optional: Change bundler install path to be local
bundle config --local path $(pwd)/.bundle
bundle instal

To build shared library for development use:
To build shared library for development use (ensure you have cloned submodules :

bundle exec rake compile

Expand Down Expand Up @@ -1237,6 +1239,9 @@ the gem at `lib/temporalio/internal/bridge/3.2/temporalio_bridge.so` and

### Testing

Note you can set `TEMPORAL_TEST_CLIENT_TARGET_HOST` and `TEMPORAL_TEST_CLIENT_TARGET_NAMESPACE`
(optional, defaults to 'default') environment variables to use an existing server.

This project uses `minitest`. To test:

bundle exec rake test
Expand Down
Loading
Loading