checkoff 0.239.0 → 0.240.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 +4 -4
- data/lib/checkoff/version.rb +1 -1
- data/rbi/checkoff.rbi +20 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ea51392a919d88215ec942961d8b2babf98f4bdf1253576bbf500871c43ec33
|
|
4
|
+
data.tar.gz: 48eecb43aa2049bceec3015098936400b6bb4cd379b5420a4b4d40f15546cf94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 679274ab21a8c5aea9f72ca12f6d241934050533c6f6576a639509360fc7cc0fe986f0d42b29f3a931b88550d39048962d89bc3c18df48035f71b6d00a3e3919
|
|
7
|
+
data.tar.gz: a629ed0734612fb353b700fe5e7170af38c96ba3ec7713d14c6402d380cf2320bc9e7959da076a9c578ea53030802884e77613e059ba76158e315eaf98975175
|
data/lib/checkoff/version.rb
CHANGED
data/rbi/checkoff.rbi
CHANGED
|
@@ -52,12 +52,30 @@ module Overcommit
|
|
|
52
52
|
sig { returns(T.untyped) }
|
|
53
53
|
def run; end
|
|
54
54
|
end
|
|
55
|
+
|
|
56
|
+
class RegenerateTypecheck < Base
|
|
57
|
+
BUILD_TYPECHECK_PATHS = [
|
|
58
|
+
'sorbet/rbi/gems',
|
|
59
|
+
'sorbet/rbi/annotations',
|
|
60
|
+
'sorbet/rbi/dsl',
|
|
61
|
+
'sorbet/rbi/todo.rbi',
|
|
62
|
+
'rbs_collection.lock.yaml',
|
|
63
|
+
].freeze
|
|
64
|
+
STAMP_FILES = %w[
|
|
65
|
+
tapioca.installed
|
|
66
|
+
Gemfile.lock.installed
|
|
67
|
+
types.installed
|
|
68
|
+
].freeze
|
|
69
|
+
|
|
70
|
+
sig { returns(T.untyped) }
|
|
71
|
+
def run; end
|
|
72
|
+
end
|
|
55
73
|
end
|
|
56
74
|
end
|
|
57
75
|
end
|
|
58
76
|
|
|
59
77
|
module Checkoff
|
|
60
|
-
VERSION = '0.
|
|
78
|
+
VERSION = '0.240.0'
|
|
61
79
|
|
|
62
80
|
class Attachments
|
|
63
81
|
include Logging
|
|
@@ -2415,7 +2433,7 @@ end
|
|
|
2415
2433
|
# typed: ignore
|
|
2416
2434
|
# Command-line and gem client for Asana (unofficial)
|
|
2417
2435
|
module Checkoff
|
|
2418
|
-
VERSION = T.let('0.
|
|
2436
|
+
VERSION = T.let('0.240.0', T.untyped)
|
|
2419
2437
|
|
|
2420
2438
|
# Move tasks from one place to another
|
|
2421
2439
|
class MvSubcommand
|