mayak 0.0.14 → 0.0.15

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 221a2d0600601424c1b7f01078c26369743c85a240df39ac5a8b28dd68b6618e
4
- data.tar.gz: 3b1abd6a9ecb58ea5ea251c1e93ca1ae53186c3902bcd9ba94f24f997d46b531
3
+ metadata.gz: 8217e22d103f9b3a253973f90f330d3b69d98320919c85b28a9d05df42c9b901
4
+ data.tar.gz: 89e2f9a86616f036129b0c31b09d864b811067febc4b31191a6d98ef1b332774
5
5
  SHA512:
6
- metadata.gz: 1bdce4716909e84e70db5aec924f2c80fd86e82cfbd7502382e9ac3d6e48dbbae55d3d5afe449037f23865ec4a81bc3042369cecf5815ab1527ffc8a2dc348c5
7
- data.tar.gz: 52008707af1699cf0cd7c35acf3feca9f3593577a7ad8a76e239e36310ae4f9e316a9b87f6bc9d0d7cd8b00a0324c26bd5344e4f3c54dded86af14e93bad2821
6
+ metadata.gz: e44eddcb1be94600d1501ecfbac8690557c233410ebb5a470e669201a40d564aafe00ea358027fe78887b893dc3b7cc0fb1aaa6be8f02d9d75ea19ac64abed2c
7
+ data.tar.gz: 2238e28cfd575b50f0a2fc6fb360485fd10c2fd754c441493f394bd289f3f38a5b54f13d952fbfa8ef09b85bbed9968f8245500ade2ae405bd5b12b93862e6cf
@@ -32,6 +32,11 @@ module Mayak
32
32
  ::Mayak::Function[T.type_parameter(:Input), T.type_parameter(:Output)].new { |input| proc.call(input) }
33
33
  end
34
34
 
35
+ sig { returns(T.proc.params(arg0: Input).returns(Output)) }
36
+ def to_proc
37
+ -> (input) { call(input) }
38
+ end
39
+
35
40
  sig { params(input: Input).returns(Output) }
36
41
  def call(input)
37
42
  blk.call(input)
data/mayak.gemspec CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "mayak"
7
- spec.version = "0.0.14"
7
+ spec.version = "0.0.15"
8
8
  spec.summary = "Set of fully typed utility classes and interfaces integrated with Sorbet."
9
9
  spec.description = spec.summary
10
10
  spec.authors = ["Daniil Bober"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mayak
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniil Bober