orthoses 1.6.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -3
- data/lib/orthoses/builder.rb +7 -3
- data/lib/orthoses/content/duplication_checker.rb +54 -17
- data/lib/orthoses/content/environment.rb +14 -1
- data/lib/orthoses/content.rb +46 -44
- data/lib/orthoses/create_file_by_name.rb +38 -7
- data/lib/orthoses/filter.rb +2 -2
- data/lib/orthoses/missing_name.rb +81 -0
- data/lib/orthoses/mixin.rb +9 -4
- data/lib/orthoses/rbs_prototype_rb.rb +16 -2
- data/lib/orthoses/rbs_prototype_runtime.rb +21 -2
- data/lib/orthoses/utils.rb +1 -1
- data/lib/orthoses/version.rb +1 -1
- data/lib/orthoses.rb +1 -0
- data/sig/orthoses/_call.rbs +1 -1
- data/sig/orthoses/_middle_ware.rbs +1 -1
- data/sig/orthoses/attribute/hook.rbs +1 -1
- data/sig/orthoses/attribute.rbs +1 -1
- data/sig/orthoses/autoload/hook.rbs +1 -1
- data/sig/orthoses/autoload.rbs +1 -1
- data/sig/orthoses/builder/call_logable.rbs +1 -1
- data/sig/orthoses/builder.rbs +14 -4
- data/sig/orthoses/call_tracer/capturable.rbs +1 -1
- data/sig/orthoses/call_tracer/capture.rbs +1 -1
- data/sig/orthoses/call_tracer/lazy.rbs +14 -2
- data/sig/orthoses/call_tracer.rbs +1 -1
- data/sig/orthoses/const_load_error.rbs +1 -1
- data/sig/orthoses/constant.rbs +1 -1
- data/sig/orthoses/content/array_io.rbs +1 -1
- data/sig/orthoses/content/duplication_checker.rbs +7 -2
- data/sig/orthoses/content/environment.rbs +8 -3
- data/sig/orthoses/content/header_builder.rbs +1 -1
- data/sig/orthoses/content.rbs +3 -2
- data/sig/orthoses/create_file_by_name.rbs +2 -2
- data/sig/orthoses/delegate_class/hook.rbs +1 -1
- data/sig/orthoses/delegate_class.rbs +1 -1
- data/sig/orthoses/filter.rbs +6 -1
- data/sig/orthoses/lazy_trace_point.rbs +9 -1
- data/sig/orthoses/load_rbs.rbs +1 -1
- data/sig/orthoses/missing_name/missing_class.rbs +7 -0
- data/sig/orthoses/missing_name/missing_module.rbs +7 -0
- data/sig/orthoses/missing_name.rbs +6 -0
- data/sig/orthoses/mixin/hook.rbs +2 -2
- data/sig/orthoses/mixin.rbs +2 -2
- data/sig/orthoses/name_space_error.rbs +1 -1
- data/sig/orthoses/object_space_all.rbs +1 -1
- data/sig/orthoses/outputable/avoid_recursive_ancestor_error.rbs +3 -1
- data/sig/orthoses/outputable/constantizable_filter.rbs +3 -1
- data/sig/orthoses/outputable/uniq_content_body.rbs +3 -1
- data/sig/orthoses/outputable.rbs +1 -1
- data/sig/orthoses/path_helper.rbs +1 -1
- data/sig/orthoses/pp.rbs +3 -1
- data/sig/orthoses/rbs_prototype_rb.rbs +10 -3
- data/sig/orthoses/rbs_prototype_runtime.rbs +13 -3
- data/sig/orthoses/sort.rbs +2 -1
- data/sig/orthoses/store.rbs +3 -1
- data/sig/orthoses/tap.rbs +4 -1
- data/sig/orthoses/trace/attribute.rbs +1 -1
- data/sig/orthoses/trace/method/info.rbs +1 -1
- data/sig/orthoses/trace/method.rbs +1 -1
- data/sig/orthoses/trace/targetable.rbs +1 -1
- data/sig/orthoses/trace.rbs +1 -1
- data/sig/orthoses/utils/type_list.rbs +2 -1
- data/sig/orthoses/utils/underscore.rbs +1 -1
- data/sig/orthoses/utils.rbs +2 -2
- data/sig/orthoses/walk.rbs +1 -1
- data/sig/orthoses/writer.rbs +1 -1
- data/sig/orthoses.rbs +2 -2
- metadata +7 -13
- data/Gemfile +0 -15
- data/Gemfile.lock +0 -76
- data/examples/minitest/Rakefile +0 -56
- data/examples/rack-test/Gemfile +0 -8
- data/examples/rack-test/Gemfile.lock +0 -30
- data/examples/rack-test/Rakefile +0 -7
- data/examples/rack-test/generate.rb +0 -31
- data/examples/simple_middleware.rb +0 -11
- data/examples/simple_middleware.rbs +0 -7
- data/orthoses.gemspec +0 -36
data/sig/orthoses/autoload.rbs
CHANGED
data/sig/orthoses/builder.rbs
CHANGED
@@ -1,9 +1,19 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# Middleware builder like the Rack
|
4
|
+
# Builder.new do
|
5
|
+
# use Orthoses::CreateFileByName
|
6
|
+
# use Orthoses::Constant
|
7
|
+
# use Orthoses::Mixin
|
8
|
+
# use Orthoses::Walk,
|
9
|
+
# root: "Foo"
|
10
|
+
# run ->() { require 'foo' }
|
11
|
+
# end
|
3
12
|
class Orthoses::Builder
|
4
|
-
def initialize: () ?{ () -> untyped } -> void
|
5
|
-
def use: (untyped middleware, *untyped args, **untyped key) ?{ () -> untyped } -> untyped
|
13
|
+
def initialize: () ?{ () [self: Orthoses::Builder] -> untyped } -> void
|
14
|
+
def use: (untyped middleware, *untyped args, **untyped key) ?{ (*untyped, **untyped) -> untyped } -> untyped
|
6
15
|
def run: (untyped loader) -> untyped
|
16
|
+
def reset_runner: (untyped loader) -> untyped
|
7
17
|
def to_loader: () -> untyped
|
8
|
-
def call: ()
|
18
|
+
def call: () -> Orthoses::store
|
9
19
|
end
|
@@ -1,7 +1,19 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# CallTracer::Lazy is possible to perform a trace
|
4
|
+
# equivalent to CallTracer before method is defined.
|
5
|
+
# scope = CallTracerLazy.new
|
6
|
+
# scope.trace("ActiveRecord::Base#scope") do
|
7
|
+
# require 'active_record/all'
|
8
|
+
# @loader.call
|
9
|
+
# end
|
10
|
+
# scope.captures.each do |capture|
|
11
|
+
# capture.argument[:name]
|
12
|
+
# capture.argument[:body]
|
13
|
+
# capture.argument[:block]
|
14
|
+
# end
|
3
15
|
class Orthoses::CallTracer::Lazy
|
4
16
|
def initialize: () -> void
|
5
17
|
def trace: (String name) ?{ () -> untyped } -> untyped
|
6
|
-
attr_reader captures: Array[
|
18
|
+
attr_reader captures: Array[Orthoses::CallTracer::Capture]
|
7
19
|
end
|
data/sig/orthoses/constant.rbs
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
3
|
class Orthoses::Constant
|
4
4
|
def initialize: (Orthoses::_Call loader, ?strict: bool, ?if: ^(Module, Symbol, untyped) -> boolish | nil, ?on_error: ^(Orthoses::ConstLoadError) -> void | nil) -> void
|
@@ -1,8 +1,13 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# Check and drop duplication method, const etc...
|
3
4
|
class Orthoses::Content::DuplicationChecker
|
4
5
|
def initialize: (untyped decl, ?env: untyped?) -> void
|
5
6
|
def update_decl: () -> (nil | untyped)
|
6
|
-
private def
|
7
|
+
private def uniq_members: () -> untyped
|
8
|
+
private def drop_set_method_definition: () -> untyped
|
9
|
+
private def drop_known_method_definition: () -> untyped
|
10
|
+
private def drop_known_method_definition_recur: (untyped d) -> untyped
|
11
|
+
private def drop_known_const_definition: () -> untyped
|
7
12
|
private def member_key: (untyped member) -> untyped
|
8
13
|
end
|
@@ -1,8 +1,8 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
3
|
class Orthoses::Content::Environment
|
4
4
|
def self.load_from_paths: (untyped paths) -> untyped
|
5
|
-
def initialize: (?constant_filter: constant_filter?, ?mixin_filter: mixin_filter?, ?attribute_filter: attribute_filter?) -> void
|
5
|
+
def initialize: (?method_definition_filter: method_definition_filter?, ?alias_filter: alias_filter?, ?constant_filter: constant_filter?, ?mixin_filter: mixin_filter?, ?attribute_filter: attribute_filter?) -> void
|
6
6
|
def <<: (RBS::AST::Declarations::t decl) -> RBS::Environment
|
7
7
|
def write_to: (store: Orthoses::store) -> void
|
8
8
|
def each: () { (Orthoses::Content) -> void } -> void
|
@@ -11,10 +11,15 @@ class Orthoses::Content::Environment
|
|
11
11
|
# end
|
12
12
|
private def avoid_generic_parameter_mismatch_error: () -> untyped
|
13
13
|
private def decls_to_lines: (untyped decls) -> untyped
|
14
|
+
type method_definition_filter = ^(RBS::AST::Members::MethodDefinition) -> boolish
|
15
|
+
type alias_filter = ^(RBS::AST::Members::Alias) -> boolish
|
14
16
|
type constant_filter = ^(RBS::AST::Declarations::Constant) -> boolish
|
15
17
|
type mixin_filter = ^(RBS::AST::Members::Mixin) -> boolish
|
16
18
|
type attribute_filter = ^(RBS::AST::Members::Attribute) -> boolish
|
17
|
-
@
|
19
|
+
@load_env: RBS::Environment
|
20
|
+
@known_env: RBS::Environment
|
21
|
+
@method_definition_filter: method_definition_filter?
|
22
|
+
@alias_filter: alias_filter?
|
18
23
|
@constant_filter: constant_filter?
|
19
24
|
@mixin_filter: mixin_filter?
|
20
25
|
@attribute_filter: attribute_filter?
|
data/sig/orthoses/content.rbs
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
3
|
class Orthoses::Content
|
4
4
|
def initialize: (name: String) -> void
|
@@ -12,13 +12,14 @@ class Orthoses::Content
|
|
12
12
|
def uniq!: () -> untyped
|
13
13
|
def sort!: () -> untyped
|
14
14
|
def original_rbs: () -> untyped
|
15
|
+
def auto_header: () -> (nil | untyped)
|
15
16
|
private def decl_to_lines: (untyped decl) -> untyped
|
16
17
|
private def uniqed_body_string: () -> String
|
17
18
|
private def uniqed_body_decl: () -> RBS::AST::Declarations::t
|
18
|
-
private def auto_header: () -> (nil | untyped)
|
19
19
|
private def temporary_type_params: (untyped name) -> untyped
|
20
20
|
private def type_params: (untyped name) -> untyped
|
21
21
|
attr_reader name: String
|
22
22
|
attr_reader body: Array[String]
|
23
23
|
attr_accessor header: String?
|
24
|
+
attr_accessor comment: String?
|
24
25
|
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
3
|
class Orthoses::CreateFileByName
|
4
|
-
def initialize: (Orthoses::_Call loader,
|
4
|
+
def initialize: (Orthoses::_Call loader, to: String, ?header: String?, ?depth: Integer?, ?rmtree: boolish) -> void
|
5
5
|
def call: () -> Orthoses::store
|
6
6
|
@loader: Orthoses::_Call
|
7
7
|
end
|
data/sig/orthoses/filter.rbs
CHANGED
@@ -1,5 +1,10 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# Filter current store.
|
4
|
+
# filter stored key and value if proc return true
|
5
|
+
# use Orthoses::Filter do |name, content|
|
6
|
+
# Orthoses.rbs_defined_class?(name)
|
7
|
+
# end
|
3
8
|
class Orthoses::Filter
|
4
9
|
def initialize: (Orthoses::_Call loader) { (String, Orthoses::Content) -> boolish } -> void
|
5
10
|
def call: () -> Orthoses::store
|
@@ -1,5 +1,13 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# TracePoint wrapper that allows setting hooks
|
4
|
+
# even if the target is undefined
|
5
|
+
# LazyTracePoint.new(:call) do |tp|
|
6
|
+
# ...
|
7
|
+
# end.enable(target: 'Class#class_attribute') do
|
8
|
+
# require 'active_support/core_ext/class/attribute'
|
9
|
+
# ...
|
10
|
+
# end
|
3
11
|
class Orthoses::LazyTracePoint < ::TracePoint
|
4
12
|
def method_added: (untyped id) -> untyped
|
5
13
|
def singleton_method_added: (untyped id) -> untyped
|
data/sig/orthoses/load_rbs.rbs
CHANGED
data/sig/orthoses/mixin/hook.rbs
CHANGED
data/sig/orthoses/mixin.rbs
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
3
|
class Orthoses::Mixin
|
4
|
-
def initialize: (Orthoses::_Call loader) -> void
|
4
|
+
def initialize: (Orthoses::_Call loader, ?if: nil | ^(Module base_mod, :include | :extend | :prepend how, Module mod) -> boolish) -> void
|
5
5
|
def call: () -> Orthoses::store
|
6
6
|
private def collect_definitions: (Orthoses::store store, Orthoses::CallTracer call_tracer, :include | :extend | :prepend how) -> void
|
7
7
|
@loader: Orthoses::_Call
|
@@ -1,5 +1,7 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# AvoidRecursiveAncestorError is an internal middleware
|
4
|
+
# It's using on orthoses/outputable.rb
|
3
5
|
class Orthoses::Outputable::AvoidRecursiveAncestorError
|
4
6
|
def initialize: (Orthoses::_Call loader) -> void
|
5
7
|
def call: () -> Orthoses::store
|
@@ -1,5 +1,7 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# Constantizable is an internal middleware
|
4
|
+
# It's using on orthoses/outputable.rb
|
3
5
|
class Orthoses::Outputable::ConstantizableFilter
|
4
6
|
def initialize: (untyped loader) -> void
|
5
7
|
def call: () -> untyped
|
@@ -1,5 +1,7 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# UniqContentBody is an internal middleware
|
4
|
+
# It's using on orthoses/outputable.rb
|
3
5
|
class Orthoses::Outputable::UniqContentBody
|
4
6
|
def initialize: (untyped loader) -> void
|
5
7
|
def call: () -> untyped
|
data/sig/orthoses/outputable.rbs
CHANGED
data/sig/orthoses/pp.rbs
CHANGED
@@ -1,11 +1,18 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# Call `rbs prototype rb` and add to store
|
4
|
+
# use Orthoses::RBSPrototypeRB,
|
5
|
+
# paths: Dir.glob("lib/**/*.rb"),
|
6
|
+
# method_definition_filter: ->(member) { false },
|
7
|
+
# alias_filter: ->(member) { false }
|
3
8
|
class Orthoses::RBSPrototypeRB
|
4
|
-
def initialize: (Orthoses::_Call loader, paths: Array[_ToS], ?constant_filter: Orthoses::Content::Environment::constant_filter?, ?mixin_filter: Orthoses::Content::Environment::mixin_filter?, ?attribute_filter: Orthoses::Content::Environment::attribute_filter?) -> void
|
9
|
+
def initialize: (Orthoses::_Call loader, paths: Array[_ToS], ?method_definition_filter: Orthoses::Content::Environment::method_definition_filter?, ?alias_filter: Orthoses::Content::Environment::alias_filter?, ?constant_filter: Orthoses::Content::Environment::constant_filter?, ?mixin_filter: Orthoses::Content::Environment::mixin_filter?, ?attribute_filter: Orthoses::Content::Environment::attribute_filter?) -> void
|
5
10
|
def call: () -> Orthoses::store
|
6
11
|
@loader: Orthoses::_Call
|
7
12
|
@paths: Array[_ToS]
|
13
|
+
@method_definition_filter: Orthoses::Content::Environment::method_definition_filter?
|
14
|
+
@alias_filter: Orthoses::Content::Environment::alias_filter?
|
8
15
|
@constant_filter: Orthoses::Content::Environment::constant_filter?
|
9
16
|
@mixin_filter: Orthoses::Content::Environment::mixin_filter?
|
10
|
-
@attribute_filter: Orthoses::Content::Environment::
|
17
|
+
@attribute_filter: Orthoses::Content::Environment::attribute_filter?
|
11
18
|
end
|
@@ -1,6 +1,16 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# Call `rbs prototype runtime` and add to store
|
4
|
+
# use Orthoses::RBSPrototypeRuntime,
|
5
|
+
# patterns: ['Foo::*']
|
3
6
|
class Orthoses::RBSPrototypeRuntime
|
4
|
-
def initialize: (
|
5
|
-
def call: () ->
|
7
|
+
def initialize: (Orthoses::_Call loader, patterns: Array[_ToS], ?method_definition_filter: Orthoses::Content::Environment::method_definition_filter?, ?alias_filter: Orthoses::Content::Environment::alias_filter?, ?constant_filter: Orthoses::Content::Environment::constant_filter?, ?mixin_filter: Orthoses::Content::Environment::mixin_filter?, ?attribute_filter: Orthoses::Content::Environment::attribute_filter?) -> void
|
8
|
+
def call: () -> Orthoses::store
|
9
|
+
@loader: Orthoses::_Call
|
10
|
+
@patterns: Array[_ToS]
|
11
|
+
@method_definition_filter: Orthoses::Content::Environment::method_definition_filter?
|
12
|
+
@alias_filter: Orthoses::Content::Environment::alias_filter?
|
13
|
+
@constant_filter: Orthoses::Content::Environment::constant_filter?
|
14
|
+
@mixin_filter: Orthoses::Content::Environment::mixin_filter?
|
15
|
+
@attribute_filter: Orthoses::Content::Environment::attribute_filter?
|
6
16
|
end
|
data/sig/orthoses/sort.rbs
CHANGED
data/sig/orthoses/store.rbs
CHANGED
@@ -1,5 +1,7 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# Internal middleware for return store object
|
4
|
+
# Builder set this middleware on last stack by default
|
3
5
|
class Orthoses::Store
|
4
6
|
def initialize: (untyped loader) -> void
|
5
7
|
def call: () -> untyped
|
data/sig/orthoses/tap.rbs
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
|
+
# use Orthoses::Tap do |store|
|
4
|
+
# store["Foo::Bar"] << "def baz: () -> void"
|
5
|
+
# end
|
3
6
|
class Orthoses::Tap
|
4
7
|
def initialize: (Orthoses::_Call loader) -> void
|
5
8
|
def call: () -> Orthoses::store
|
data/sig/orthoses/trace.rbs
CHANGED
data/sig/orthoses/utils.rbs
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
# THIS IS GENERATED CODE from `$ rake
|
1
|
+
# THIS IS GENERATED CODE from `$ rake sig`
|
2
2
|
|
3
3
|
module Orthoses::Utils
|
4
4
|
def self.unautoload!: () -> untyped
|
5
5
|
|
6
|
-
def self.each_const_recursive: (Module root, ?cache: Hash[untyped, true], ?on_error: ^(Orthoses::ConstLoadError) -> void) ?{ (Module, Symbol, untyped) -> void } -> void
|
6
|
+
def self.each_const_recursive: (Module root, ?cache: Hash[untyped, true], ?on_error: nil | ^(Orthoses::ConstLoadError) -> void) ?{ (Module, Symbol, untyped) -> void } -> void
|
7
7
|
|
8
8
|
def self.rbs_defined_const?: (String name, ?library: (String | Array[String])?, ?collection: boolish) -> bool
|
9
9
|
|
data/sig/orthoses/walk.rbs
CHANGED
data/sig/orthoses/writer.rbs
CHANGED
data/sig/orthoses.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orthoses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ksss
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rbs
|
@@ -32,17 +32,8 @@ extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
34
|
- CODE_OF_CONDUCT.md
|
35
|
-
- Gemfile
|
36
|
-
- Gemfile.lock
|
37
35
|
- LICENSE.txt
|
38
36
|
- README.md
|
39
|
-
- examples/minitest/Rakefile
|
40
|
-
- examples/rack-test/Gemfile
|
41
|
-
- examples/rack-test/Gemfile.lock
|
42
|
-
- examples/rack-test/Rakefile
|
43
|
-
- examples/rack-test/generate.rb
|
44
|
-
- examples/simple_middleware.rb
|
45
|
-
- examples/simple_middleware.rbs
|
46
37
|
- lib/orthoses.rb
|
47
38
|
- lib/orthoses/attribute.rb
|
48
39
|
- lib/orthoses/autoload.rb
|
@@ -60,6 +51,7 @@ files:
|
|
60
51
|
- lib/orthoses/filter.rb
|
61
52
|
- lib/orthoses/lazy_trace_point.rb
|
62
53
|
- lib/orthoses/load_rbs.rb
|
54
|
+
- lib/orthoses/missing_name.rb
|
63
55
|
- lib/orthoses/mixin.rb
|
64
56
|
- lib/orthoses/object_space_all.rb
|
65
57
|
- lib/orthoses/outputable.rb
|
@@ -83,7 +75,6 @@ files:
|
|
83
75
|
- lib/orthoses/version.rb
|
84
76
|
- lib/orthoses/walk.rb
|
85
77
|
- lib/orthoses/writer.rb
|
86
|
-
- orthoses.gemspec
|
87
78
|
- sig/orthoses.rbs
|
88
79
|
- sig/orthoses/_call.rbs
|
89
80
|
- sig/orthoses/_middle_ware.rbs
|
@@ -110,6 +101,9 @@ files:
|
|
110
101
|
- sig/orthoses/filter.rbs
|
111
102
|
- sig/orthoses/lazy_trace_point.rbs
|
112
103
|
- sig/orthoses/load_rbs.rbs
|
104
|
+
- sig/orthoses/missing_name.rbs
|
105
|
+
- sig/orthoses/missing_name/missing_class.rbs
|
106
|
+
- sig/orthoses/missing_name/missing_module.rbs
|
113
107
|
- sig/orthoses/mixin.rbs
|
114
108
|
- sig/orthoses/mixin/hook.rbs
|
115
109
|
- sig/orthoses/name_space_error.rbs
|
@@ -156,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
150
|
- !ruby/object:Gem::Version
|
157
151
|
version: '0'
|
158
152
|
requirements: []
|
159
|
-
rubygems_version: 3.4.
|
153
|
+
rubygems_version: 3.4.10
|
160
154
|
signing_key:
|
161
155
|
specification_version: 4
|
162
156
|
summary: Framework for Generate RBS
|
data/Gemfile
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
# Specify your gem's dependencies in orthoses.gemspec
|
6
|
-
gemspec
|
7
|
-
|
8
|
-
gem "rbs"
|
9
|
-
gem "rake", "~> 13.0"
|
10
|
-
gem "rgot", "~> 1.1"
|
11
|
-
gem "activesupport"
|
12
|
-
|
13
|
-
group :steep do
|
14
|
-
gem "steep", "1.4.0.dev.2"
|
15
|
-
end
|