Skip to content

Commit f4c57b5

Browse files
authoredJan 21, 2022
Merge pull request coinbase#131 from chuckremes2/master
Modify the Getting Started section so that it works
2 parents f764e21 + 6adb4e4 commit f4c57b5

File tree

1 file changed

+22
-13
lines changed

1 file changed

+22
-13
lines changed
 

‎README.md

+22-13
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To find more about Temporal itself please visit <https://temporal.io/>.
1414
Clone this repository:
1515

1616
```sh
17-
> git clone git@github.com:coinbase/temporal-ruby.git
17+
git clone git@github.com:coinbase/temporal-ruby.git
1818
```
1919

2020
Include this gem to your `Gemfile`:
@@ -26,6 +26,7 @@ gem 'temporal-ruby', github: 'coinbase/temporal-ruby'
2626
Define an activity:
2727

2828
```ruby
29+
require 'temporal-ruby'
2930
class HelloActivity < Temporal::Activity
3031
def execute(name)
3132
puts "Hello #{name}!"
@@ -49,37 +50,41 @@ class HelloWorldWorkflow < Temporal::Workflow
4950
end
5051
```
5152

52-
Configure your Temporal connection:
53+
Configure your Temporal connection and register the namespace with the Temporal service:
5354

5455
```ruby
56+
require 'temporal-ruby'
5557
Temporal.configure do |config|
5658
config.host = 'localhost'
5759
config.port = 7233
5860
config.namespace = 'ruby-samples'
5961
config.task_queue = 'hello-world'
6062
end
61-
```
62-
63-
Register namespace with the Temporal service:
6463

65-
```ruby
66-
Temporal.register_namespace('ruby-samples', 'A safe space for playing with Temporal Ruby')
64+
begin
65+
Temporal.register_namespace('ruby-samples', 'A safe space for playing with Temporal Ruby')
66+
rescue Temporal::NamespaceAlreadyExistsFailure
67+
nil # service was already registered
68+
end
6769
```
6870

69-
Configure and start your worker process:
71+
72+
Configure and start your worker process in a terminal shell:
7073

7174
```ruby
75+
require 'path/to/configuration'
7276
require 'temporal/worker'
7377

7478
worker = Temporal::Worker.new
7579
worker.register_workflow(HelloWorldWorkflow)
7680
worker.register_activity(HelloActivity)
77-
worker.start
81+
worker.start # runs forever
7882
```
7983

80-
And finally start your workflow:
84+
And finally start your workflow in another terminal shell:
8185

8286
```ruby
87+
require 'path/to/configuration'
8388
require 'path/to/hello_world_workflow'
8489

8590
Temporal.start_workflow(HelloWorldWorkflow)
@@ -97,12 +102,16 @@ available, make sure to check them out.
97102
## Installing dependencies
98103

99104
Temporal service handles all the persistence, fault tolerance and coordination of your workflows and
100-
activities. To set it up locally, download and boot the Docker Compose file from the official repo:
105+
activities. To set it up locally, download and boot the Docker Compose file from the official repo.
106+
The Docker Compose file forwards all ports to your localhost so you can interact with
107+
the containers easily from your shells.
108+
109+
Run:
101110

102111
```sh
103-
> curl -O https://raw.githubusercontent.com/temporalio/docker-compose/main/docker-compose.yml
112+
curl -O https://raw.githubusercontent.com/temporalio/docker-compose/main/docker-compose.yml
104113

105-
> docker-compose up
114+
docker-compose up
106115
```
107116

108117
## Workflows

0 commit comments

Comments
 (0)
Please sign in to comment.