typeprof-task 0.1.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 +7 -0
- data/.document +4 -0
- data/.rdoc_options +1 -0
- data/.rubocop.yml +8 -0
- data/CHANGELOG.md +7 -0
- data/LICENSE +21 -0
- data/README.md +44 -0
- data/Rakefile +16 -0
- data/lib/typeprof/task.rb +169 -0
- data/sig/typeprof/task.rbs +6 -0
- metadata +115 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ca7e7b06a15856ddbdbe3c053f22c6fba15977a1963894f0b2c13670fe7cafbc
|
4
|
+
data.tar.gz: e381df67d8c5ecb97a4eacbbc90f8cf087d80ed1e66e3eef380172ca501f0473
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fd9775e23baf707b461c3bbe7c6aa985961c66fa9ebbed6ad54254dfc936792cfdbf6734e6346f6c9c6c54490f1d8c9ccd86e650f2d4d2df3b46358aa645169a
|
7
|
+
data.tar.gz: 69b3537d307837adc1cc13a75dc3af79a3f81d66739b74220ca31bb0001af27b59cf7a9bfd38f95e8569020d4dadc9d400e6b88d586d3a115db67123b7d05f5b
|
data/.document
ADDED
data/.rdoc_options
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
main_page: README.md
|
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2024 gemmaro
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# TypeProf::Task
|
2
|
+
|
3
|
+
Rake interface for TypeProf.
|
4
|
+
|
5
|
+
TypeProf Task is a Rake task library for TypeProf. It defines tasks to
|
6
|
+
analyze Ruby source codes (and generate RBS files).
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Install the gem and add to the application's `Gemfile` by executing:
|
11
|
+
|
12
|
+
``` shell
|
13
|
+
bundle add typeprof-task
|
14
|
+
```
|
15
|
+
|
16
|
+
If Bundler is not being used to manage dependencies, install the gem by executing:
|
17
|
+
|
18
|
+
``` shell
|
19
|
+
gem install typeprof-task
|
20
|
+
```
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
Add below to your `Rakefile` and run `rake typeprof`. Please refer to the API
|
25
|
+
documentation for options.
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require "typeprof/task"
|
29
|
+
|
30
|
+
TypeProf::Task.new
|
31
|
+
```
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
After checking out the repo, run `bin/setup` to install dependencies.
|
36
|
+
Then, run `rake test` to run the tests.
|
37
|
+
You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
38
|
+
|
39
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
40
|
+
To release a new version, update the version number in the library file, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
41
|
+
|
42
|
+
## Contributing
|
43
|
+
|
44
|
+
Bug reports and pull requests are welcome.
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
require "rake/testtask"
|
5
|
+
|
6
|
+
Rake::TestTask.new(:test) do |t|
|
7
|
+
t.libs << "test"
|
8
|
+
t.libs << "lib"
|
9
|
+
t.test_files = FileList["test/**/*_test.rb"]
|
10
|
+
end
|
11
|
+
|
12
|
+
require "rubocop/rake_task"
|
13
|
+
|
14
|
+
RuboCop::RakeTask.new
|
15
|
+
|
16
|
+
task default: %i[test rubocop]
|
@@ -0,0 +1,169 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "typeprof"
|
4
|
+
require "rake/tasklib"
|
5
|
+
require "set"
|
6
|
+
|
7
|
+
module TypeProf
|
8
|
+
class Task < Rake::TaskLib
|
9
|
+
VERSION = "0.1.0"
|
10
|
+
|
11
|
+
# Target files. By default, files under one of the require paths.
|
12
|
+
attr_writer :files
|
13
|
+
|
14
|
+
# Output file path. <tt>sig/GEM_NAME.gen.rbs</tt> by default. See also
|
15
|
+
# TypeProf's <tt>-o</tt> option.
|
16
|
+
attr_writer :outfile
|
17
|
+
|
18
|
+
# Unspecified by default. See also TypeProf's <tt>--quiet</tt> option.
|
19
|
+
attr_writer :quiet
|
20
|
+
|
21
|
+
# None by default. See also TypeProf's <tt>-I</tt> option.
|
22
|
+
attr_writer :include
|
23
|
+
|
24
|
+
# None by default. See also TypeProf's <tt>-r</tt> option.
|
25
|
+
attr_writer :require
|
26
|
+
|
27
|
+
# None by default. See also TypeProf's <tt>--collection</tt> option.
|
28
|
+
attr_writer :collection
|
29
|
+
|
30
|
+
# None by default. See also TypeProf's <tt>--include-dir</tt> option.
|
31
|
+
attr_writer :include_dir
|
32
|
+
|
33
|
+
# None by default. See also TypeProf's <tt>--exclude-dir</tt> option.
|
34
|
+
attr_writer :exclude_dir
|
35
|
+
|
36
|
+
# Unspecified by default. See also TypeProf's <tt>--exclude-untyped</tt>
|
37
|
+
# option.
|
38
|
+
attr_writer :exclude_untyped
|
39
|
+
|
40
|
+
# Unspecified by default. See also TypeProf's
|
41
|
+
# <tt>--show-typeprof-version</tt> option.
|
42
|
+
attr_writer :show_version
|
43
|
+
|
44
|
+
# Unspecified by default. See also TypeProf's <tt>--show-errors</tt> (or
|
45
|
+
# <tt>--verbose</tt>) option.
|
46
|
+
attr_writer :show_errors
|
47
|
+
|
48
|
+
# Unspecified by default. See also TypeProf's <tt>--show-untyped</tt>
|
49
|
+
# option.
|
50
|
+
attr_writer :show_untyped
|
51
|
+
|
52
|
+
# Unspecified by default. See also TypeProf's
|
53
|
+
# <tt>--show-parameter-names</tt> option.
|
54
|
+
attr_writer :show_parameter_names
|
55
|
+
|
56
|
+
# Unspecified by default. See also TypeProf's
|
57
|
+
# <tt>--show-source-locations</tt> option.
|
58
|
+
attr_writer :show_source_locations
|
59
|
+
|
60
|
+
# Unspecified by default. See also TypeProf's <tt>--max-second</tt>
|
61
|
+
# option.
|
62
|
+
attr_writer :max_second
|
63
|
+
|
64
|
+
# Unspecified by default. See also TypeProf's <tt>--max-iteration</tt>
|
65
|
+
# option.
|
66
|
+
attr_writer :max_iteration
|
67
|
+
|
68
|
+
# Unspecified by default. See also TypeProf's <tt>--stub-execution</tt>
|
69
|
+
# option.
|
70
|
+
attr_writer :stub_execution
|
71
|
+
|
72
|
+
# Unspecified by default. See also TypeProf's <tt>--type-depth-limit</tt>
|
73
|
+
# option.
|
74
|
+
attr_writer :type_depth_limit
|
75
|
+
|
76
|
+
# Unspecified by default. See also TypeProf's
|
77
|
+
# <tt>--union_width_limit</tt> option.
|
78
|
+
attr_writer :union_width_limit
|
79
|
+
|
80
|
+
def initialize(name = :typeprof)
|
81
|
+
# TODO: Support multiple gemspecs and custom path options
|
82
|
+
Dir["*.gemspec"] => [gemspec]
|
83
|
+
spec = Gem::Specification.load(gemspec)
|
84
|
+
|
85
|
+
@files = spec.lib_files
|
86
|
+
@outfile = File.join("sig", "#{spec.name}.gen.rbs")
|
87
|
+
@include = Set.new
|
88
|
+
@require = Set.new
|
89
|
+
@collection = Set.new
|
90
|
+
@include_dir = Set.new
|
91
|
+
@exclude_dir = Set.new
|
92
|
+
|
93
|
+
block_given? and yield self
|
94
|
+
|
95
|
+
options = ["-o", @outfile]
|
96
|
+
@quiet and options << "--quiet"
|
97
|
+
options.concat(@include.flat_map { |dir| ["-I", dir] })
|
98
|
+
options.concat(@require.flat_map { |gem| ["-r", gem] })
|
99
|
+
options.concat(@collection.flat_map { |conf| ["--collection", conf] })
|
100
|
+
options.concat(@include_dir.flat_map { |dir| ["--include-dir", dir] })
|
101
|
+
options.concat(@exclude_dir.flat_map { |dir| ["--exclude-dir", dir] })
|
102
|
+
@exclude_untyped and options << "--exclude-untyped"
|
103
|
+
|
104
|
+
if instance_variable_defined?(:@show_version)
|
105
|
+
if @show_version
|
106
|
+
options << "--show-typeprof-version"
|
107
|
+
else
|
108
|
+
options << "--no-show-typeprof-version"
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
if instance_variable_defined?(:@show_errors)
|
113
|
+
if @show_errors
|
114
|
+
options << "--show-errors"
|
115
|
+
else
|
116
|
+
options << "--no-show-errors"
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
if instance_variable_defined?(:@show_untyped)
|
121
|
+
if @show_untyped
|
122
|
+
options << "--show-untyped"
|
123
|
+
else
|
124
|
+
options << "--no-show-untyped"
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
if instance_variable_defined?(:@show_parameter_names)
|
129
|
+
if @show_parameter_names
|
130
|
+
options << "--show-parameter-names"
|
131
|
+
else
|
132
|
+
options << "--no-show-parameter-names"
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
if instance_variable_defined?(:@show_source_locations)
|
137
|
+
if @show_source_locations
|
138
|
+
options << "--show-source-locations"
|
139
|
+
else
|
140
|
+
options << "--no-show-source-locations"
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
@max_second and options.push("--max-second", @max_second)
|
145
|
+
@max_iteration and options.push("--max-iteration", @max_iteration)
|
146
|
+
|
147
|
+
if instance_variable_defined?(:@stub_execution)
|
148
|
+
if @stub_execution
|
149
|
+
options << "--stub-execution"
|
150
|
+
else
|
151
|
+
options << "--no-stub-execution"
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
@type_depth_limit and options.push("--type-depth-limit", @type_depth_limit)
|
156
|
+
@union_width_limit and options.push("--union-width-limit", @union_width_limit)
|
157
|
+
|
158
|
+
outdir = File.dirname(@outfile)
|
159
|
+
|
160
|
+
desc "Analyze types for Ruby code"
|
161
|
+
task name => outdir do
|
162
|
+
config = TypeProf::CLI.parse([*options, *@files])
|
163
|
+
TypeProf.analyze(config)
|
164
|
+
end
|
165
|
+
|
166
|
+
directory outdir
|
167
|
+
end
|
168
|
+
end
|
169
|
+
end
|
metadata
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: typeprof-task
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- gemmaro
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: typeprof
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.21.3
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.21.3
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: test-unit
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubocop
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: TypeProf Task is a Rake task library for TypeProf.
|
70
|
+
email:
|
71
|
+
- gemmaro.dev@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".document"
|
77
|
+
- ".rdoc_options"
|
78
|
+
- ".rubocop.yml"
|
79
|
+
- CHANGELOG.md
|
80
|
+
- LICENSE
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- lib/typeprof/task.rb
|
84
|
+
- sig/typeprof/task.rbs
|
85
|
+
homepage: https://git.disroot.org/gemmaro/typeprof-task
|
86
|
+
licenses:
|
87
|
+
- MIT
|
88
|
+
metadata:
|
89
|
+
rubygems_mfa_required: 'true'
|
90
|
+
bug_tracker_uri: https://git.disroot.org/gemmaro/typeprof-task/issues
|
91
|
+
changelog_uri: https://git.disroot.org/gemmaro/typeprof-task/src/branch/main/CHANGELOG.md
|
92
|
+
documentation_uri: https://rubydoc.info/gems/typeprof-task
|
93
|
+
homepage_uri: https://git.disroot.org/gemmaro/typeprof-task
|
94
|
+
source_code_uri: https://git.disroot.org/gemmaro/typeprof-task
|
95
|
+
wiki_uri: https://git.disroot.org/gemmaro/typeprof-task/wiki
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: 3.1.4
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubygems_version: 3.3.26
|
112
|
+
signing_key:
|
113
|
+
specification_version: 4
|
114
|
+
summary: TypeProf for Rake task
|
115
|
+
test_files: []
|