├── .github └── workflows │ ├── push_gem.yml │ └── test.yml ├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── repl_type_completor.rb └── repl_type_completor │ ├── methods.rb │ ├── require_paths.rb │ ├── result.rb │ ├── scope.rb │ ├── type_analyzer.rb │ ├── types.rb │ └── version.rb ├── repl_type_completor.gemspec ├── sig └── repl_type_completor.rbs └── test └── repl_type_completor ├── helper.rb ├── test_repl_type_completor.rb ├── test_require_paths.rb ├── test_scope.rb ├── test_type_analyze.rb └── test_types.rb /.github/workflows/push_gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/.github/workflows/push_gem.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/repl_type_completor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/lib/repl_type_completor.rb -------------------------------------------------------------------------------- /lib/repl_type_completor/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/lib/repl_type_completor/methods.rb -------------------------------------------------------------------------------- /lib/repl_type_completor/require_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/lib/repl_type_completor/require_paths.rb -------------------------------------------------------------------------------- /lib/repl_type_completor/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/lib/repl_type_completor/result.rb -------------------------------------------------------------------------------- /lib/repl_type_completor/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/lib/repl_type_completor/scope.rb -------------------------------------------------------------------------------- /lib/repl_type_completor/type_analyzer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/lib/repl_type_completor/type_analyzer.rb -------------------------------------------------------------------------------- /lib/repl_type_completor/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/lib/repl_type_completor/types.rb -------------------------------------------------------------------------------- /lib/repl_type_completor/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ReplTypeCompletor 4 | VERSION = "0.1.12" 5 | end 6 | -------------------------------------------------------------------------------- /repl_type_completor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/repl_type_completor.gemspec -------------------------------------------------------------------------------- /sig/repl_type_completor.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/sig/repl_type_completor.rbs -------------------------------------------------------------------------------- /test/repl_type_completor/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/test/repl_type_completor/helper.rb -------------------------------------------------------------------------------- /test/repl_type_completor/test_repl_type_completor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/test/repl_type_completor/test_repl_type_completor.rb -------------------------------------------------------------------------------- /test/repl_type_completor/test_require_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/test/repl_type_completor/test_require_paths.rb -------------------------------------------------------------------------------- /test/repl_type_completor/test_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/test/repl_type_completor/test_scope.rb -------------------------------------------------------------------------------- /test/repl_type_completor/test_type_analyze.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/test/repl_type_completor/test_type_analyze.rb -------------------------------------------------------------------------------- /test/repl_type_completor/test_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/repl_type_completor/HEAD/test/repl_type_completor/test_types.rb --------------------------------------------------------------------------------