Skip to content

Commit 234e99f

Browse files
committed
Update docs to v0.27
[ci skip] Issue: #209
1 parent 3e8ff2b commit 234e99f

File tree

5 files changed

+10
-17
lines changed

5 files changed

+10
-17
lines changed

railseventstore.org/source/docs/protobuf.html.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Using Rails Event Store with Protobuf [edge feature]
1+
# Using Rails Event Store with Protobuf
22

33
Using RES with Protobuf or another binary serialization protocol might be a good idea if you want to share your events' data with another applications and micro-services.
44

@@ -8,7 +8,7 @@ Add RES and protobuf to your app's `Gemfile`
88

99
```ruby
1010
gem 'google-protobuf'
11-
gem 'rails_event_store', github: "RailsEventStore/rails_event_store"
11+
gem 'rails_event_store'
1212
```
1313

1414
This edge feature is not yet available in a released gem version.

railseventstore.org/source/docs/subscribe.html.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ You start the temporary subscription by providing a block `within` which the sub
264264
265265
<h2 id="async-handlers">Async handlers</h2>
266266
267-
It's possible to also subscribe async handlers to events. Async handlers are just background jobs implemented with `ActiveJob`. However, you need to configure `RailsEventStore` to use `ActiveJobDispatcher`.
267+
It's possible to also subscribe async handlers to events. Async handlers are just background jobs implemented with `ActiveJob`.
268268

269269
```ruby
270270
class SendOrderEmail < ActiveJob::Base
@@ -275,12 +275,7 @@ class SendOrderEmail < ActiveJob::Base
275275
end
276276
end
277277
278-
event_store = RailsEventStore::Client.new(
279-
event_broker: RailsEventStore::EventBroker.new(
280-
dispatcher: RailsEventStore::ActiveJobDispatcher.new
281-
)
282-
)
283-
278+
event_store = RailsEventStore::Client.new
284279
event_store.subscribe(SendOrderEmail, to: [OrderPlaced])
285280
```
286281

railseventstore.org/source/docs/without_rails.html.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# Using Ruby Event Store without Rails [edge feature]
2-
3-
This edge feature is not yet available in a released gem version.
1+
# Using Ruby Event Store without Rails
42

53
## Installation
64

@@ -10,8 +8,8 @@ Add to your `Gemfile`
108
source 'https://rubygems.org'
119

1210
gem 'activerecord'
13-
gem 'ruby_event_store', github: "RailsEventStore/rails_event_store"
14-
gem 'rails_event_store_active_record', github: "RailsEventStore/rails_event_store"
11+
gem 'ruby_event_store'
12+
gem 'rails_event_store_active_record'
1513

1614
# And one of:
1715
gem 'sqlite3'

railseventstore.org/source/layouts/documentation.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<% wrap_layout :base do %>
22
<header class="frame__section">
33
<div class="container">
4-
<%= partial "partials/site_section", locals: { title: "Documentation" , subtitle: "v0.26.0" } %>
4+
<%= partial "partials/site_section", locals: { title: "Documentation" , subtitle: "v0.27.0" } %>
55
</div>
66
</header>
77

railseventstore.org/source/partials/_documentation_nav.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<li class="doc-item"><%= current_link_to "Event serialization formats", "/docs/mapping_serialization/" %></li>
2929
<li class="doc-item"><%= current_link_to "Custom repository", "/docs/repository/" %></li>
3030
<li class="doc-item"><%= current_link_to "Browser", "/docs/browser/" %></li>
31-
<li class="doc-item"><%= current_link_to "Ruby Event Store without Rails [edge]", "/docs/without_rails/" %></li>
31+
<li class="doc-item"><%= current_link_to "Ruby Event Store without Rails", "/docs/without_rails/" %></li>
3232
</ul>
3333
</div>
3434

@@ -39,6 +39,6 @@
3939

4040
<ul class="doc-list">
4141
<li class="doc-item"><%= current_link_to "Publish-Subscribe", "/docs/pubsub/" %></li>
42-
<li class="doc-item"><%= current_link_to "Using RES with Protobuf [edge]", "/docs/protobuf/" %></li>
42+
<li class="doc-item"><%= current_link_to "Using RES with Protobuf", "/docs/protobuf/" %></li>
4343
</ul>
4444
</div>

0 commit comments

Comments
 (0)