├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console ├── setup ├── steep-check ├── steep-gen └── steep-gen-check ├── example ├── sample1 │ ├── lib │ │ └── example1.rb │ └── sig │ │ └── example1.rbi └── sample2 │ ├── lib │ └── 2.rb │ └── sig │ └── 2.rbi ├── exe └── yard2steep ├── lib ├── yard2steep.rb └── yard2steep │ ├── ast.rb │ ├── ast │ ├── class_node.rb │ ├── constant_node.rb │ ├── i_var_node.rb │ ├── method_node.rb │ ├── p_node.rb │ └── p_type_node.rb │ ├── cli.rb │ ├── cli │ └── option.rb │ ├── comments.rb │ ├── engine.rb │ ├── gen.rb │ ├── parser.rb │ ├── type.rb │ ├── type │ ├── ast.rb │ └── parser.rb │ ├── util.rb │ └── version.rb ├── sig ├── steep-scaffold │ └── td.rbi └── yard2steep │ ├── yard2steep.rbi │ └── yard2steep │ ├── ast.rbi │ ├── ast │ ├── class_node.rbi │ ├── constant_node.rbi │ ├── i_var_node.rbi │ ├── method_node.rbi │ ├── p_node.rbi │ └── p_type_node.rbi │ ├── cli.rbi │ ├── cli │ └── option.rbi │ ├── comments.rbi │ ├── engine.rbi │ ├── gen.rbi │ ├── parser.rbi │ ├── type.rbi │ ├── type │ ├── ast.rbi │ └── parser.rbi │ ├── util.rbi │ └── version.rbi ├── spec └── yard2steep_spec.rb └── yard2steep.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/steep-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/bin/steep-check -------------------------------------------------------------------------------- /bin/steep-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/bin/steep-gen -------------------------------------------------------------------------------- /bin/steep-gen-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/bin/steep-gen-check -------------------------------------------------------------------------------- /example/sample1/lib/example1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/example/sample1/lib/example1.rb -------------------------------------------------------------------------------- /example/sample1/sig/example1.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/example/sample1/sig/example1.rbi -------------------------------------------------------------------------------- /example/sample2/lib/2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/example/sample2/lib/2.rb -------------------------------------------------------------------------------- /example/sample2/sig/2.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/example/sample2/sig/2.rbi -------------------------------------------------------------------------------- /exe/yard2steep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/exe/yard2steep -------------------------------------------------------------------------------- /lib/yard2steep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep.rb -------------------------------------------------------------------------------- /lib/yard2steep/ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/ast.rb -------------------------------------------------------------------------------- /lib/yard2steep/ast/class_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/ast/class_node.rb -------------------------------------------------------------------------------- /lib/yard2steep/ast/constant_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/ast/constant_node.rb -------------------------------------------------------------------------------- /lib/yard2steep/ast/i_var_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/ast/i_var_node.rb -------------------------------------------------------------------------------- /lib/yard2steep/ast/method_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/ast/method_node.rb -------------------------------------------------------------------------------- /lib/yard2steep/ast/p_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/ast/p_node.rb -------------------------------------------------------------------------------- /lib/yard2steep/ast/p_type_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/ast/p_type_node.rb -------------------------------------------------------------------------------- /lib/yard2steep/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/cli.rb -------------------------------------------------------------------------------- /lib/yard2steep/cli/option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/cli/option.rb -------------------------------------------------------------------------------- /lib/yard2steep/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/comments.rb -------------------------------------------------------------------------------- /lib/yard2steep/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/engine.rb -------------------------------------------------------------------------------- /lib/yard2steep/gen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/gen.rb -------------------------------------------------------------------------------- /lib/yard2steep/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/parser.rb -------------------------------------------------------------------------------- /lib/yard2steep/type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/type.rb -------------------------------------------------------------------------------- /lib/yard2steep/type/ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/type/ast.rb -------------------------------------------------------------------------------- /lib/yard2steep/type/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/type/parser.rb -------------------------------------------------------------------------------- /lib/yard2steep/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/lib/yard2steep/util.rb -------------------------------------------------------------------------------- /lib/yard2steep/version.rb: -------------------------------------------------------------------------------- 1 | module Yard2steep 2 | VERSION = "0.2.0" 3 | end 4 | -------------------------------------------------------------------------------- /sig/steep-scaffold/td.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/steep-scaffold/td.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep.rbi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/ast.rbi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/ast/class_node.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/ast/class_node.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/ast/constant_node.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/ast/constant_node.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/ast/i_var_node.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/ast/i_var_node.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/ast/method_node.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/ast/method_node.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/ast/p_node.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/ast/p_node.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/ast/p_type_node.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/ast/p_type_node.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/cli.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/cli.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/cli/option.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/cli/option.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/comments.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/comments.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/engine.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/engine.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/gen.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/gen.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/parser.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/parser.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/type.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/type.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/type/ast.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/type/ast.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/type/parser.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/type/parser.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/util.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/sig/yard2steep/yard2steep/util.rbi -------------------------------------------------------------------------------- /sig/yard2steep/yard2steep/version.rbi: -------------------------------------------------------------------------------- 1 | Yard2steep::VERSION: String 2 | -------------------------------------------------------------------------------- /spec/yard2steep_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/spec/yard2steep_spec.rb -------------------------------------------------------------------------------- /yard2steep.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/south37/yard2steep/HEAD/yard2steep.gemspec --------------------------------------------------------------------------------