irb 1.8.3 → 1.9.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 +4 -4
- data/Gemfile +7 -0
- data/README.md +101 -0
- data/Rakefile +2 -2
- data/lib/irb/cmd/irb_info.rb +1 -0
- data/lib/irb/completion.rb +27 -22
- data/lib/irb/context.rb +39 -2
- data/lib/irb/easter-egg.rb +16 -6
- data/lib/irb/init.rb +41 -0
- data/lib/irb/input-method.rb +29 -8
- data/lib/irb/lc/help-message +3 -0
- data/lib/irb/lc/ja/help-message +3 -0
- data/lib/irb/ruby_logo.aa +43 -0
- data/lib/irb/type_completion/completor.rb +235 -0
- data/lib/irb/type_completion/methods.rb +13 -0
- data/lib/irb/type_completion/scope.rb +412 -0
- data/lib/irb/type_completion/type_analyzer.rb +1169 -0
- data/lib/irb/type_completion/types.rb +426 -0
- data/lib/irb/version.rb +2 -2
- data/lib/irb.rb +83 -127
- data/man/irb.1 +7 -0
- metadata +8 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: irb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- aycabta
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-10
|
12
|
+
date: 2023-11-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: reline
|
@@ -118,6 +118,11 @@ files:
|
|
118
118
|
- lib/irb/ruby_logo.aa
|
119
119
|
- lib/irb/source_finder.rb
|
120
120
|
- lib/irb/statement.rb
|
121
|
+
- lib/irb/type_completion/completor.rb
|
122
|
+
- lib/irb/type_completion/methods.rb
|
123
|
+
- lib/irb/type_completion/scope.rb
|
124
|
+
- lib/irb/type_completion/type_analyzer.rb
|
125
|
+
- lib/irb/type_completion/types.rb
|
121
126
|
- lib/irb/version.rb
|
122
127
|
- lib/irb/workspace.rb
|
123
128
|
- lib/irb/ws-for-case-2.rb
|
@@ -147,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
152
|
- !ruby/object:Gem::Version
|
148
153
|
version: '0'
|
149
154
|
requirements: []
|
150
|
-
rubygems_version: 3.
|
155
|
+
rubygems_version: 3.5.0.dev
|
151
156
|
signing_key:
|
152
157
|
specification_version: 4
|
153
158
|
summary: Interactive Ruby command-line tool for REPL (Read Eval Print Loop).
|