irb 1.14.3 → 1.15.3

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.
data/man/irb.1 CHANGED
@@ -227,6 +227,8 @@ or
227
227
  .Sy type
228
228
  .
229
229
  .Pp
230
+ .It Ev IRB_COPY_COMMAND
231
+ Overrides the default program used to interface with the system clipboard.
230
232
  .El
231
233
  .Pp
232
234
  Also
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.3
4
+ version: 1.15.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - aycabta
8
8
  - Keiju ISHITSUKA
9
- autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2024-12-18 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: reline
@@ -39,6 +38,20 @@ dependencies:
39
38
  - - ">="
40
39
  - !ruby/object:Gem::Version
41
40
  version: 4.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: pp
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 0.6.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 0.6.0
42
55
  description: Interactive Ruby command-line tool for REPL (Read Eval Print Loop).
43
56
  email:
44
57
  - aycabta@gmail.com
@@ -48,17 +61,20 @@ executables:
48
61
  extensions: []
49
62
  extra_rdoc_files: []
50
63
  files:
51
- - ".document"
64
+ - ".rdoc_options"
65
+ - CONTRIBUTING.md
66
+ - EXTEND_IRB.md
52
67
  - Gemfile
53
68
  - LICENSE.txt
54
69
  - README.md
55
- - Rakefile
56
- - bin/console
57
- - bin/setup
70
+ - doc/COMMAND_LINE_OPTIONS.md
71
+ - doc/COMPARED_WITH_PRY.md
72
+ - doc/Configurations.md
73
+ - doc/EXTEND_IRB.md
74
+ - doc/Index.md
58
75
  - doc/irb/irb-tools.rd.ja
59
76
  - doc/irb/irb.rd.ja
60
77
  - exe/irb
61
- - irb.gemspec
62
78
  - lib/irb.rb
63
79
  - lib/irb/cmd/nop.rb
64
80
  - lib/irb/color.rb
@@ -72,6 +88,7 @@ files:
72
88
  - lib/irb/command/chws.rb
73
89
  - lib/irb/command/context.rb
74
90
  - lib/irb/command/continue.rb
91
+ - lib/irb/command/copy.rb
75
92
  - lib/irb/command/debug.rb
76
93
  - lib/irb/command/delete.rb
77
94
  - lib/irb/command/disable_irb.rb
@@ -141,9 +158,8 @@ licenses:
141
158
  metadata:
142
159
  homepage_uri: https://github.com/ruby/irb
143
160
  source_code_uri: https://github.com/ruby/irb
144
- documentation_uri: https://github.com/ruby/irb
161
+ documentation_uri: https://ruby.github.io/irb/
145
162
  changelog_uri: https://github.com/ruby/irb/releases
146
- post_install_message:
147
163
  rdoc_options: []
148
164
  require_paths:
149
165
  - lib
@@ -158,8 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
174
  - !ruby/object:Gem::Version
159
175
  version: '0'
160
176
  requirements: []
161
- rubygems_version: 3.5.11
162
- signing_key:
177
+ rubygems_version: 3.6.7
163
178
  specification_version: 4
164
179
  summary: Interactive Ruby command-line tool for REPL (Read Eval Print Loop).
165
180
  test_files: []
data/.document DELETED
@@ -1,8 +0,0 @@
1
- LICENSE.txt
2
- README.md
3
- EXTEND_IRB.md
4
- COMPARED_WITH_PRY.md
5
- doc/irb/indexes.md
6
- lib/irb.rb
7
- lib/irb/context.rb
8
- lib/irb/command/base.rb
data/Rakefile DELETED
@@ -1,52 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rake/testtask"
3
- require "rdoc/task"
4
-
5
- Rake::TestTask.new(:test) do |t|
6
- t.libs << "test" << "test/lib"
7
- t.libs << "lib"
8
- t.ruby_opts << "-rhelper"
9
- t.test_files = FileList["test/irb/**/test_*.rb"]
10
- end
11
-
12
- # To make sure they have been correctly setup for Ruby CI.
13
- desc "Run each irb test file in isolation."
14
- task :test_in_isolation do
15
- failed = false
16
-
17
- FileList["test/irb/**/test_*.rb"].each do |test_file|
18
- ENV["TEST"] = test_file
19
- begin
20
- Rake::Task["test"].execute
21
- rescue
22
- failed = true
23
- msg = "Test '#{test_file}' failed when being executed in isolation. Please make sure 'rake test TEST=#{test_file}' passes."
24
- separation_line = '=' * msg.length
25
-
26
- puts <<~MSG
27
- #{separation_line}
28
- #{msg}
29
- #{separation_line}
30
- MSG
31
- end
32
- end
33
-
34
- fail "Some tests failed when being executed in isolation" if failed
35
- end
36
-
37
- Rake::TestTask.new(:test_yamatanooroti) do |t|
38
- t.libs << 'test' << "test/lib"
39
- t.libs << 'lib'
40
- #t.loader = :direct
41
- t.ruby_opts << "-rhelper"
42
- t.pattern = 'test/irb/yamatanooroti/test_*.rb'
43
- end
44
-
45
- task :default => :test
46
-
47
- RDoc::Task.new do |rdoc|
48
- rdoc.title = "IRB"
49
- rdoc.rdoc_dir = "docs"
50
- rdoc.main = "README.md"
51
- rdoc.options.push("--copy-files", "LICENSE.txt")
52
- end
data/bin/console DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require_relative "../lib/irb"
5
-
6
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
data/irb.gemspec DELETED
@@ -1,46 +0,0 @@
1
- begin
2
- require_relative "lib/irb/version"
3
- rescue LoadError
4
- # for Ruby core repository
5
- require_relative "version"
6
- end
7
-
8
- Gem::Specification.new do |spec|
9
- spec.name = "irb"
10
- spec.version = IRB::VERSION
11
- spec.authors = ["aycabta", "Keiju ISHITSUKA"]
12
- spec.email = ["aycabta@gmail.com", "keiju@ruby-lang.org"]
13
-
14
- spec.summary = %q{Interactive Ruby command-line tool for REPL (Read Eval Print Loop).}
15
- spec.description = %q{Interactive Ruby command-line tool for REPL (Read Eval Print Loop).}
16
- spec.homepage = "https://github.com/ruby/irb"
17
- spec.licenses = ["Ruby", "BSD-2-Clause"]
18
-
19
- spec.metadata["homepage_uri"] = spec.homepage
20
- spec.metadata["source_code_uri"] = spec.homepage
21
- spec.metadata["documentation_uri"] = spec.homepage
22
- spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
23
-
24
- spec.files = [
25
- ".document",
26
- "Gemfile",
27
- "LICENSE.txt",
28
- "README.md",
29
- "Rakefile",
30
- "bin/console",
31
- "bin/setup",
32
- "doc/irb/irb-tools.rd.ja",
33
- "doc/irb/irb.rd.ja",
34
- "exe/irb",
35
- "irb.gemspec",
36
- "man/irb.1",
37
- ] + Dir.glob("lib/**/*")
38
- spec.bindir = "exe"
39
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
40
- spec.require_paths = ["lib"]
41
-
42
- spec.required_ruby_version = Gem::Requirement.new(">= 2.7")
43
-
44
- spec.add_dependency "reline", ">= 0.4.2"
45
- spec.add_dependency "rdoc", ">= 4.0.0"
46
- end