sorbet_typed-props 0.1.1
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 +7 -0
- data/COPYING +674 -0
- data/README.md +131 -0
- data/lib/sorbet_typed/props/version.rb +8 -0
- data/lib/sorbet_typed/props.rb +18 -0
- data/lib/sorbet_typed/railway.rb.tmp +9 -0
- data/lib/sorbet_typed/railway.tmp/fail_fast.rb.tmp +16 -0
- data/lib/sorbet_typed/railway.tmp/railway.rb.tmp +259 -0
- data/lib/sorbet_typed/railway.tmp/version.rb.tmp +8 -0
- data/lib/sorbet_typed/railway.tmp/version_spec.rb.tmp +10 -0
- data/lib/sorbet_typed/railway_spec.rb.tmp +5 -0
- data/lib/tapioca/dsl/compilers/sorbet_typed_props_constructor/prop_to_param_converter.rb +86 -0
- data/lib/tapioca/dsl/compilers/sorbet_typed_props_constructor.rb +75 -0
- metadata +100 -0
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sorbet_typed-props
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Richard Kramer
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: sorbet-runtime
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0.5'
|
19
|
+
- - "<="
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.6.12638
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '0.5'
|
29
|
+
- - "<="
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: 0.6.12638
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: tapioca
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ">="
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 0.16.11
|
39
|
+
- - "<="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 0.17.7
|
42
|
+
type: :runtime
|
43
|
+
prerelease: false
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 0.16.11
|
49
|
+
- - "<="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: 0.17.7
|
52
|
+
description: A small wrapper around sorbets T::Props and T::Props::Constructor. Also
|
53
|
+
provides an accompanying tapioca compiler to allow using the prop-syntax in any
|
54
|
+
class and getting the correct signature for an initializer.
|
55
|
+
email:
|
56
|
+
- mail@richardkramer.de
|
57
|
+
executables: []
|
58
|
+
extensions: []
|
59
|
+
extra_rdoc_files: []
|
60
|
+
files:
|
61
|
+
- COPYING
|
62
|
+
- README.md
|
63
|
+
- lib/sorbet_typed/props.rb
|
64
|
+
- lib/sorbet_typed/props/version.rb
|
65
|
+
- lib/sorbet_typed/railway.rb.tmp
|
66
|
+
- lib/sorbet_typed/railway.tmp/fail_fast.rb.tmp
|
67
|
+
- lib/sorbet_typed/railway.tmp/railway.rb.tmp
|
68
|
+
- lib/sorbet_typed/railway.tmp/version.rb.tmp
|
69
|
+
- lib/sorbet_typed/railway.tmp/version_spec.rb.tmp
|
70
|
+
- lib/sorbet_typed/railway_spec.rb.tmp
|
71
|
+
- lib/tapioca/dsl/compilers/sorbet_typed_props_constructor.rb
|
72
|
+
- lib/tapioca/dsl/compilers/sorbet_typed_props_constructor/prop_to_param_converter.rb
|
73
|
+
homepage: https://gitlab.com/sorbet_typed/props
|
74
|
+
licenses:
|
75
|
+
- GPL-3.0-or-later
|
76
|
+
metadata:
|
77
|
+
homepage_uri: https://gitlab.com/sorbet_typed/props
|
78
|
+
source_code_uri: https://gitlab.com/sorbet_typed/props
|
79
|
+
rubygems_mfa_required: 'true'
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '3.2'
|
88
|
+
- - "<="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 3.4.7
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubygems_version: 3.6.9
|
98
|
+
specification_version: 4
|
99
|
+
summary: Provides sorbet typed prop-DSL with correct initializer.
|
100
|
+
test_files: []
|