dres 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e4f4d2a39c018ca1adc6c96746feb93b71febe83543347dc4511a71c280e1a37
4
+ data.tar.gz: 5c5d0ca14bdec46f308f25563ec2bd84b53077a0919b34a03340171fb7f66678
5
+ SHA512:
6
+ metadata.gz: 7325fbe728749be491f28b6f84b04157a0efd7da2886a56e4f5c7d9a20bfe691bcea53ed12b349ebe7a88d7f491a0f886fe9565e6babb5938035ba190318cc09
7
+ data.tar.gz: cddff3c60e2d1fb2cc27366aaffbd0dfb0ef884c7f69733765429961f2981d0b15b05a23eb4340900e3499952e4180e743cf1bccbca7775db92b162be5170487
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2026-06-16
4
+
5
+ - Initial release
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # DRES
2
+
3
+ Durable workflows for RubyEventStore.
4
+
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ task default: :test
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dres
4
+ VERSION = "0.0.0"
5
+ end
data/lib/dres.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "dres/version"
4
+
5
+ module Dres
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/dres.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Dres
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dres
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Paweł Pacana
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ email:
13
+ - pawel.pacana@gmail.com
14
+ executables: []
15
+ extensions: []
16
+ extra_rdoc_files: []
17
+ files:
18
+ - CHANGELOG.md
19
+ - README.md
20
+ - Rakefile
21
+ - lib/dres.rb
22
+ - lib/dres/version.rb
23
+ - sig/dres.rbs
24
+ homepage: https://github.com/mostlyobvious/dres
25
+ licenses: []
26
+ metadata:
27
+ homepage_uri: https://github.com/mostlyobvious/dres
28
+ source_code_uri: https://github.com/mostlyobvious/dres
29
+ changelog_uri: https://github.com/mostlyobvious/dres/blob/main/CHANGELOG.md
30
+ rubygems_mfa_required: 'true'
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: 3.2.0
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 4.0.11
46
+ specification_version: 4
47
+ summary: Durable workflows with RubyEventStore
48
+ test_files: []