@@ -14,7 +14,7 @@ To find more about Temporal itself please visit <https://temporal.io/>.
14
14
Clone this repository:
15
15
16
16
``` sh
17
- > git clone git@github.com:coinbase/temporal-ruby.git
17
+ git clone git@github.com:coinbase/temporal-ruby.git
18
18
```
19
19
20
20
Include this gem to your ` Gemfile ` :
@@ -26,6 +26,7 @@ gem 'temporal-ruby', github: 'coinbase/temporal-ruby'
26
26
Define an activity:
27
27
28
28
``` ruby
29
+ require ' temporal-ruby'
29
30
class HelloActivity < Temporal ::Activity
30
31
def execute (name )
31
32
puts " Hello #{ name } !"
@@ -49,37 +50,41 @@ class HelloWorldWorkflow < Temporal::Workflow
49
50
end
50
51
```
51
52
52
- Configure your Temporal connection:
53
+ Configure your Temporal connection and register the namespace with the Temporal service :
53
54
54
55
``` ruby
56
+ require ' temporal-ruby'
55
57
Temporal .configure do |config |
56
58
config.host = ' localhost'
57
59
config.port = 7233
58
60
config.namespace = ' ruby-samples'
59
61
config.task_queue = ' hello-world'
60
62
end
61
- ```
62
-
63
- Register namespace with the Temporal service:
64
63
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
67
69
```
68
70
69
- Configure and start your worker process:
71
+
72
+ Configure and start your worker process in a terminal shell:
70
73
71
74
``` ruby
75
+ require ' path/to/configuration'
72
76
require ' temporal/worker'
73
77
74
78
worker = Temporal ::Worker .new
75
79
worker.register_workflow(HelloWorldWorkflow )
76
80
worker.register_activity(HelloActivity )
77
- worker.start
81
+ worker.start # runs forever
78
82
```
79
83
80
- And finally start your workflow:
84
+ And finally start your workflow in another terminal shell :
81
85
82
86
``` ruby
87
+ require ' path/to/configuration'
83
88
require ' path/to/hello_world_workflow'
84
89
85
90
Temporal .start_workflow(HelloWorldWorkflow )
@@ -97,12 +102,16 @@ available, make sure to check them out.
97
102
## Installing dependencies
98
103
99
104
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:
101
110
102
111
``` 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
104
113
105
- > docker-compose up
114
+ docker-compose up
106
115
```
107
116
108
117
## Workflows
0 commit comments