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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4040f1116ab68a5b072e7a847480080c778b1ff87c37a0a47d1ee3b923f61ffb
4
- data.tar.gz: b262f219610e463cdccfa5d7e3442526963f118d2ea1386ff442919920b9053f
3
+ metadata.gz: b10553866e335d8d7e7210d41cde3b905939b6ee26822994197c4bcfe8d324ce
4
+ data.tar.gz: ffa7d6f2f2bd57b7695b2e0622df519a0b0e830519aedb71185576038b514f3b
5
5
  SHA512:
6
- metadata.gz: e3e1eea5dc319b4eafd62e62ffc1dc10ccc3301ffa603ddd8696f9b0a9a8f16a7604037873595fd91291211264e79622e8f1eba05a22dd02e78133466ae35e7d
7
- data.tar.gz: 30f08d4582741295df623ab8ddf1f87c97723eeea0a8217e39a6ae4bcd12dd6a1ee88623256d96e29a83a410687ec8e3fa89a3ce95a72973dc5ad1002846481d
6
+ metadata.gz: 6f91f4b6facc4ce53917e0b574e85eb4d6f3e11646ce32407e39b79226e310f072ec564a993ef4e9ab68868bc83a261c1756b238f658ad66298d005806a4540f
7
+ data.tar.gz: c63bfaf42df1456961c16f9903df32f05dabab967d4a0305457aa2288e0b2d12d5e0a8be5ad1d62cf47e21b6bddacd8c82cc4eede8c5b4f1615bd715d4281b45
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.5.0] - 2025-03-30
4
+
5
+ - feat: Add paths to control trace targets
6
+ - chore: Remove wrong examples
7
+
3
8
  ## [0.4.1] - 2025-02-24
4
9
 
5
10
  - fix: Ensure class names are referenced
data/README.md CHANGED
@@ -111,9 +111,7 @@ end
111
111
  ### Insert RBS declarations for specific files only
112
112
 
113
113
  ```ruby
114
- trace.files.each do |path, file|
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
@@ -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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RBS
4
4
  class Trace
5
- VERSION = "0.4.1"
5
+ VERSION = "0.5.0"
6
6
  end
7
7
  end
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, :PATH_INTERNAL, :PATH_EVAL, :PATH_INLINE_TEMPLATE
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.each_value(&:rewrite)
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 if ignore_path?(tp.path)
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
@@ -11,14 +11,8 @@ module RBS
11
11
  # steep:ignore:end
12
12
  RUBY_LIB_PATH: String
13
13
 
14
- PATH_INTERNAL: String
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.1
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-02-23 00:00:00.000000000 Z
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.4.1
92
- changelog_uri: https://github.com/sinsoku/rbs-trace/blob/v0.4.1/CHANGELOG.md
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: