temporalio 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a772f8c38831abb97dc31fa9be30ffc543dbb40194eaac1d18205af6a40dac72
4
+ data.tar.gz: 5a89f5c305501c0a926167d2736c06b8d9269a59f9dd9128e87abf6f5f569b42
5
+ SHA512:
6
+ metadata.gz: cec1c83612f01cc1affb6b22bfcad392d0611af378cb6cc6db3c77e91be1448f1d41f886f51fc3db3bc3756c74aa870de55dd3e2d3e982e2a4f9ef625e2f41a2
7
+ data.tar.gz: dd7bad401f055148dd59aaf88b62594b80daea1028d89ebcfe65d5612237b98fdb6b8ca92181e2ca0a88bc009af13e754ad1b2e0b5af923a51279db581b7dabc
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Temporal Ruby SDK
2
+
3
+ MIT License
4
+
5
+ Copyright (c) 2022 Temporal Technologies, Inc. All Rights Reserved
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
8
+ associated documentation files (the "Software"), to deal in the Software without restriction,
9
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
10
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all copies or substantial
14
+ portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
17
+ NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
19
+ OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,3 @@
1
+ module Temporal
2
+ VERSION = '0.0.0'.freeze
3
+ end
data/lib/temporal.rb ADDED
@@ -0,0 +1,4 @@
1
+ require 'temporal/version'
2
+
3
+ module Temporal
4
+ end
data/lib/temporalio.rb ADDED
@@ -0,0 +1 @@
1
+ require 'temporal'
data/temporal.gemspec ADDED
@@ -0,0 +1,20 @@
1
+ require_relative './lib/temporal/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = 'temporalio'
5
+ spec.version = Temporal::VERSION
6
+ spec.summary = 'Temporal.io Ruby SDK'
7
+ spec.description = 'An SDK for implementing Temporal.io workflows and activities in Ruby'
8
+ spec.homepage = 'https://github.com/temporalio/sdk-ruby'
9
+ spec.licenses = ['MIT']
10
+
11
+ spec.authors = ['Anthony D']
12
+ spec.email = ['anthony@temporal.io']
13
+
14
+ spec.require_paths = ['lib']
15
+
16
+ spec.files =
17
+ %w[temporal.gemspec Gemfile LICENSE lib/temporalio.rb lib/temporal.rb lib/temporal/version.rb]
18
+
19
+ spec.required_ruby_version = '>= 2.7.0'
20
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: temporalio
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Anthony D
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-11-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: An SDK for implementing Temporal.io workflows and activities in Ruby
14
+ email:
15
+ - anthony@temporal.io
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Gemfile
21
+ - LICENSE
22
+ - lib/temporal.rb
23
+ - lib/temporal/version.rb
24
+ - lib/temporalio.rb
25
+ - temporal.gemspec
26
+ homepage: https://github.com/temporalio/sdk-ruby
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
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: 2.7.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: 3.2.32
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Temporal.io Ruby SDK
49
+ test_files: []