rbs-trace 0.4.1 → 0.5.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/CHANGELOG.md +5 -0
- data/README.md +1 -3
- data/lib/rbs/trace/cli/inline.rb +0 -6
- data/lib/rbs/trace/version.rb +1 -1
- data/lib/rbs/trace.rb +13 -20
- data/sig/generated/rbs/trace.rbs +5 -11
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b10553866e335d8d7e7210d41cde3b905939b6ee26822994197c4bcfe8d324ce
|
4
|
+
data.tar.gz: ffa7d6f2f2bd57b7695b2e0622df519a0b0e830519aedb71185576038b514f3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f91f4b6facc4ce53917e0b574e85eb4d6f3e11646ce32407e39b79226e310f072ec564a993ef4e9ab68868bc83a261c1756b238f658ad66298d005806a4540f
|
7
|
+
data.tar.gz: c63bfaf42df1456961c16f9903df32f05dabab967d4a0305457aa2288e0b2d12d5e0a8be5ad1d62cf47e21b6bddacd8c82cc4eede8c5b4f1615bd715d4281b45
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -111,9 +111,7 @@ end
|
|
111
111
|
### Insert RBS declarations for specific files only
|
112
112
|
|
113
113
|
```ruby
|
114
|
-
|
115
|
-
file.rewrite if path.include?("app/models/")
|
116
|
-
end
|
114
|
+
RBS::Trace.new(paths: Dir.glob("#{Dir.pwd}/app/models/**/*.rb"))
|
117
115
|
```
|
118
116
|
|
119
117
|
### Save RBS declarations as files
|
data/lib/rbs/trace/cli/inline.rb
CHANGED
@@ -13,12 +13,6 @@ module RBS
|
|
13
13
|
# Insert inline comments to `app/**/*.rb`.
|
14
14
|
$ rbs-trace inline --sig-dir=sig --rb-dir=app
|
15
15
|
|
16
|
-
# Generate RBS files with rbs-inline.
|
17
|
-
$ rbs-inline --output --opt-out app
|
18
|
-
|
19
|
-
# Remove method definitions that have been migrated to inline comments.
|
20
|
-
$ rbs subtract --write sig sig/generated/
|
21
|
-
|
22
16
|
Options:
|
23
17
|
USAGE
|
24
18
|
|
data/lib/rbs/trace/version.rb
CHANGED
data/lib/rbs/trace.rb
CHANGED
@@ -24,17 +24,15 @@ module RBS
|
|
24
24
|
BUNDLE_PATH = Bundler.bundle_path.to_s #: String
|
25
25
|
# steep:ignore:end
|
26
26
|
RUBY_LIB_PATH = RbConfig::CONFIG["rubylibdir"] #: String
|
27
|
-
PATH_INTERNAL = "<internal" #: String
|
28
|
-
PATH_EVAL = "(eval" #: String
|
29
|
-
PATH_INLINE_TEMPLATE = "inline template" #: String
|
30
27
|
|
31
|
-
private_constant :BUNDLE_PATH, :RUBY_LIB_PATH
|
28
|
+
private_constant :BUNDLE_PATH, :RUBY_LIB_PATH
|
32
29
|
|
33
|
-
# @rbs (?log_level: Symbol, ?raises: bool) -> void
|
34
|
-
def initialize(log_level: nil, raises: false)
|
30
|
+
# @rbs (?log_level: Symbol, ?raises: bool, ?paths: Array[String]) -> void
|
31
|
+
def initialize(log_level: nil, raises: false, paths: default_paths)
|
35
32
|
@log_level = log_level
|
36
33
|
@log_level ||= ENV["RBS_TRACE_DEBUG"] ? :debug : :info
|
37
34
|
@raises = raises
|
35
|
+
@paths = Set.new(paths)
|
38
36
|
end
|
39
37
|
|
40
38
|
# @rbs [T] () { () -> T } -> T
|
@@ -54,7 +52,9 @@ module RBS
|
|
54
52
|
|
55
53
|
# @rbs () -> void
|
56
54
|
def save_comments
|
57
|
-
files.
|
55
|
+
files.each do |path, file|
|
56
|
+
file.rewrite if @paths.include?(path)
|
57
|
+
end
|
58
58
|
end
|
59
59
|
|
60
60
|
# @rbs (out_dir: String) -> void
|
@@ -64,6 +64,11 @@ module RBS
|
|
64
64
|
|
65
65
|
private
|
66
66
|
|
67
|
+
# @rbs () -> Array[String]
|
68
|
+
def default_paths
|
69
|
+
Dir.glob("#{Dir.pwd}/**/*.rb").reject { |path| path.start_with?(BUNDLE_PATH, RUBY_LIB_PATH) }
|
70
|
+
end
|
71
|
+
|
67
72
|
# @rbs () -> TracePoint
|
68
73
|
def trace
|
69
74
|
@trace ||= TracePoint.new(:call, :return) { |tp| record(tp) }
|
@@ -86,7 +91,7 @@ module RBS
|
|
86
91
|
|
87
92
|
# @rbs (TracePoint) -> void
|
88
93
|
def record(tp) # rubocop:disable Metrics/MethodLength
|
89
|
-
return
|
94
|
+
return unless @paths.include?(tp.path)
|
90
95
|
|
91
96
|
file = find_or_new_file(tp.path)
|
92
97
|
# steep:ignore:start
|
@@ -127,18 +132,6 @@ module RBS
|
|
127
132
|
member.overloads << overload
|
128
133
|
end
|
129
134
|
|
130
|
-
# @rbs (String) -> bool
|
131
|
-
def ignore_path?(path)
|
132
|
-
path.start_with?(
|
133
|
-
PATH_INTERNAL,
|
134
|
-
PATH_EVAL,
|
135
|
-
PATH_INLINE_TEMPLATE,
|
136
|
-
BUNDLE_PATH,
|
137
|
-
RUBY_LIB_PATH,
|
138
|
-
__FILE__
|
139
|
-
)
|
140
|
-
end
|
141
|
-
|
142
135
|
# @rbs (String, Symbol) -> bool
|
143
136
|
def void_return_type?(path, method_id)
|
144
137
|
return true if method_id == :initialize
|
data/sig/generated/rbs/trace.rbs
CHANGED
@@ -11,14 +11,8 @@ module RBS
|
|
11
11
|
# steep:ignore:end
|
12
12
|
RUBY_LIB_PATH: String
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
PATH_EVAL: String
|
17
|
-
|
18
|
-
PATH_INLINE_TEMPLATE: String
|
19
|
-
|
20
|
-
# @rbs (?log_level: Symbol, ?raises: bool) -> void
|
21
|
-
def initialize: (?log_level: Symbol, ?raises: bool) -> void
|
14
|
+
# @rbs (?log_level: Symbol, ?raises: bool, ?paths: Array[String]) -> void
|
15
|
+
def initialize: (?log_level: Symbol, ?raises: bool, ?paths: Array[String]) -> void
|
22
16
|
|
23
17
|
# @rbs [T] () { () -> T } -> T
|
24
18
|
def enable: [T] () { () -> T } -> T
|
@@ -37,6 +31,9 @@ module RBS
|
|
37
31
|
|
38
32
|
private
|
39
33
|
|
34
|
+
# @rbs () -> Array[String]
|
35
|
+
def default_paths: () -> Array[String]
|
36
|
+
|
40
37
|
# @rbs () -> TracePoint
|
41
38
|
def trace: () -> TracePoint
|
42
39
|
|
@@ -58,9 +55,6 @@ module RBS
|
|
58
55
|
# @rbs (TracePoint, AST::Members::MethodDefinition) -> void
|
59
56
|
def return_event: (TracePoint, AST::Members::MethodDefinition) -> void
|
60
57
|
|
61
|
-
# @rbs (String) -> bool
|
62
|
-
def ignore_path?: (String) -> bool
|
63
|
-
|
64
58
|
# @rbs (String, Symbol) -> bool
|
65
59
|
def void_return_type?: (String, Symbol) -> bool
|
66
60
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbs-trace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takumi Shotoku
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: prism
|
@@ -88,8 +88,8 @@ licenses:
|
|
88
88
|
- MIT
|
89
89
|
metadata:
|
90
90
|
homepage_uri: https://github.com/sinsoku/rbs-trace
|
91
|
-
source_code_uri: https://github.com/sinsoku/rbs-trace/tree/v0.
|
92
|
-
changelog_uri: https://github.com/sinsoku/rbs-trace/blob/v0.
|
91
|
+
source_code_uri: https://github.com/sinsoku/rbs-trace/tree/v0.5.0
|
92
|
+
changelog_uri: https://github.com/sinsoku/rbs-trace/blob/v0.5.0/CHANGELOG.md
|
93
93
|
rubygems_mfa_required: 'true'
|
94
94
|
rdoc_options: []
|
95
95
|
require_paths:
|