rbs_heuristic_prototype 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/README.md +2 -0
- data/lib/generators/rbs_heuristic_prototype/install_generator.rb +1 -1
- data/lib/rbs_heuristic_prototype/version.rb +1 -1
- data/rbs_collection.lock.yaml +20 -16
- data/sig/shims/active_model.rbs +5 -0
- data/sig/shims/thor.rbs +5 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a959d3a8d268d1bf8392251cfb4842beb01c5e6d3da0edc6f7bcc6d6927b886c
|
4
|
+
data.tar.gz: a4d88cd1eb8409d6928b9d2f472d9fbfe0d6035b0d08a74f5e6884f73e5cbd87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c78ccdeb69f4014349df67263be3ca63dbeca09884837260e42565926e357d2e14197b2b2bdc676096d3879c5cfd661cc51998238df7630317c11e7954bdc7ef
|
7
|
+
data.tar.gz: 4bfa69e3b3bf36c16bdb5f1a3ef8e18446f0cd91e09b056b1e6d5f70de564ec8b06d7134ce7dd9842dbf883cb45b4c0c7b7b009ac1839758e7874163a3f06d07
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rbs_heuristic_prototype (0.
|
4
|
+
rbs_heuristic_prototype (0.3.0)
|
5
5
|
rbs
|
6
6
|
|
7
7
|
GEM
|
@@ -87,7 +87,7 @@ GEM
|
|
87
87
|
rb-fsevent (0.11.2)
|
88
88
|
rb-inotify (0.10.1)
|
89
89
|
ffi (~> 1.0)
|
90
|
-
rbs (3.1.
|
90
|
+
rbs (3.1.1)
|
91
91
|
regexp_parser (2.8.1)
|
92
92
|
rexml (3.2.5)
|
93
93
|
rspec (3.12.0)
|
@@ -121,7 +121,7 @@ GEM
|
|
121
121
|
parser (>= 3.2.1.0)
|
122
122
|
ruby-progressbar (1.13.0)
|
123
123
|
securerandom (0.2.2)
|
124
|
-
steep (1.5.
|
124
|
+
steep (1.5.1)
|
125
125
|
activesupport (>= 5.1)
|
126
126
|
concurrent-ruby (>= 1.1.10)
|
127
127
|
csv (>= 3.0.9)
|
data/README.md
CHANGED
@@ -41,6 +41,8 @@ by `rbs prototype` according to the heuristic rules.
|
|
41
41
|
* This is useful to avoid `Ruby::IncompatibleAssignment` warning when right hand value uses `#freeze` method
|
42
42
|
* ref: https://github.com/soutaro/steep/issues/363
|
43
43
|
* Rule 3:
|
44
|
+
* Convert a callback method of ActiveModel subclass to a method returning "void" (ex. `before_save` callback)
|
45
|
+
* Rule 4:
|
44
46
|
* Convert a scoped module/class definition (ex. `Foo::Bar::Baz`) to the nested definitions
|
45
47
|
* This is useful to define intermediate modules automatically like what Rails and zeitwerk does.
|
46
48
|
|
@@ -7,7 +7,7 @@ module RbsHeuristicPrototype
|
|
7
7
|
def create_raketask
|
8
8
|
create_file "lib/tasks/rbs_heuristic_prototype.rake", <<~RUBY
|
9
9
|
begin
|
10
|
-
require 'rbs_heuristic_prototype
|
10
|
+
require 'rbs_heuristic_prototype'
|
11
11
|
RbsHeuristicPrototype::RakeTask.new
|
12
12
|
rescue LoadError
|
13
13
|
# failed to load rbs_heuristic_prototype. Skip to load rbs_heuristic_prototype tasks.
|
data/rbs_collection.lock.yaml
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
sources:
|
3
3
|
- type: git
|
4
4
|
name: ruby/gem_rbs_collection
|
5
|
-
revision:
|
5
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
6
6
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
7
7
|
repo_dir: gems
|
8
8
|
path: ".gem_rbs_collection"
|
@@ -16,7 +16,7 @@ gems:
|
|
16
16
|
source:
|
17
17
|
type: git
|
18
18
|
name: ruby/gem_rbs_collection
|
19
|
-
revision:
|
19
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
20
20
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
21
21
|
repo_dir: gems
|
22
22
|
- name: actionview
|
@@ -24,7 +24,7 @@ gems:
|
|
24
24
|
source:
|
25
25
|
type: git
|
26
26
|
name: ruby/gem_rbs_collection
|
27
|
-
revision:
|
27
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
28
28
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
29
29
|
repo_dir: gems
|
30
30
|
- name: activemodel
|
@@ -32,7 +32,7 @@ gems:
|
|
32
32
|
source:
|
33
33
|
type: git
|
34
34
|
name: ruby/gem_rbs_collection
|
35
|
-
revision:
|
35
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
36
36
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
37
37
|
repo_dir: gems
|
38
38
|
- name: activerecord
|
@@ -40,7 +40,7 @@ gems:
|
|
40
40
|
source:
|
41
41
|
type: git
|
42
42
|
name: ruby/gem_rbs_collection
|
43
|
-
revision:
|
43
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
44
44
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
45
45
|
repo_dir: gems
|
46
46
|
- name: activesupport
|
@@ -48,7 +48,7 @@ gems:
|
|
48
48
|
source:
|
49
49
|
type: git
|
50
50
|
name: ruby/gem_rbs_collection
|
51
|
-
revision:
|
51
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
52
52
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
53
53
|
repo_dir: gems
|
54
54
|
- name: ast
|
@@ -56,7 +56,7 @@ gems:
|
|
56
56
|
source:
|
57
57
|
type: git
|
58
58
|
name: ruby/gem_rbs_collection
|
59
|
-
revision:
|
59
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
60
60
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
61
61
|
repo_dir: gems
|
62
62
|
- name: cgi
|
@@ -68,7 +68,7 @@ gems:
|
|
68
68
|
source:
|
69
69
|
type: git
|
70
70
|
name: ruby/gem_rbs_collection
|
71
|
-
revision:
|
71
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
72
72
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
73
73
|
repo_dir: gems
|
74
74
|
- name: date
|
@@ -80,7 +80,7 @@ gems:
|
|
80
80
|
source:
|
81
81
|
type: git
|
82
82
|
name: ruby/gem_rbs_collection
|
83
|
-
revision:
|
83
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
84
84
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
85
85
|
repo_dir: gems
|
86
86
|
- name: json
|
@@ -108,7 +108,7 @@ gems:
|
|
108
108
|
source:
|
109
109
|
type: git
|
110
110
|
name: ruby/gem_rbs_collection
|
111
|
-
revision:
|
111
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
112
112
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
113
113
|
repo_dir: gems
|
114
114
|
- name: optparse
|
@@ -120,7 +120,7 @@ gems:
|
|
120
120
|
source:
|
121
121
|
type: git
|
122
122
|
name: ruby/gem_rbs_collection
|
123
|
-
revision:
|
123
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
124
124
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
125
125
|
repo_dir: gems
|
126
126
|
- name: pathname
|
@@ -132,7 +132,7 @@ gems:
|
|
132
132
|
source:
|
133
133
|
type: git
|
134
134
|
name: ruby/gem_rbs_collection
|
135
|
-
revision:
|
135
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
136
136
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
137
137
|
repo_dir: gems
|
138
138
|
- name: rails-dom-testing
|
@@ -140,7 +140,7 @@ gems:
|
|
140
140
|
source:
|
141
141
|
type: git
|
142
142
|
name: ruby/gem_rbs_collection
|
143
|
-
revision:
|
143
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
144
144
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
145
145
|
repo_dir: gems
|
146
146
|
- name: railties
|
@@ -148,7 +148,7 @@ gems:
|
|
148
148
|
source:
|
149
149
|
type: git
|
150
150
|
name: ruby/gem_rbs_collection
|
151
|
-
revision:
|
151
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
152
152
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
153
153
|
repo_dir: gems
|
154
154
|
- name: rainbow
|
@@ -156,17 +156,21 @@ gems:
|
|
156
156
|
source:
|
157
157
|
type: git
|
158
158
|
name: ruby/gem_rbs_collection
|
159
|
-
revision:
|
159
|
+
revision: aeede7258d020bfd509541e0c8075ce833292409
|
160
160
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
161
161
|
repo_dir: gems
|
162
162
|
- name: rbs
|
163
|
-
version: 3.1.
|
163
|
+
version: 3.1.1
|
164
164
|
source:
|
165
165
|
type: rubygems
|
166
166
|
- name: rdoc
|
167
167
|
version: '0'
|
168
168
|
source:
|
169
169
|
type: stdlib
|
170
|
+
- name: securerandom
|
171
|
+
version: '0'
|
172
|
+
source:
|
173
|
+
type: stdlib
|
170
174
|
- name: singleton
|
171
175
|
version: '0'
|
172
176
|
source:
|
data/sig/shims/thor.rbs
ADDED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbs_heuristic_prototype
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takeshi KOMIYA
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rbs
|
@@ -63,6 +63,8 @@ files:
|
|
63
63
|
- sig/rbs_heuristic_prototype/filters/deep_module_filter.rbs
|
64
64
|
- sig/rbs_heuristic_prototype/filters/symbol_array_constants_filter.rbs
|
65
65
|
- sig/rbs_heuristic_prototype/rake_task.rbs
|
66
|
+
- sig/shims/active_model.rbs
|
67
|
+
- sig/shims/thor.rbs
|
66
68
|
homepage: https://github.com/tk0miya/rbs_heuristic_prototype
|
67
69
|
licenses:
|
68
70
|
- MIT
|