irb 1.14.2 → 1.14.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.
- checksums.yaml +4 -4
- data/.document +5 -1
- data/Rakefile +0 -2
- data/lib/irb/command/base.rb +3 -7
- data/lib/irb/debug.rb +1 -0
- data/lib/irb/version.rb +2 -2
- data/lib/irb.rb +2 -2
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 3f1a9b1cbe12db08853604fff0b28f7b66ae1e724d54580ce507e15feb9e0f63
         | 
| 4 | 
            +
              data.tar.gz: ce18f088328360ab8d39c4c3902984f0110e704b5a6d953e171d8d35c7b545a8
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: a3a46b3c4b9b03dd97175f71cb1a41b02482b996f63b98fa1128c91e741dd17eff1c5af6d314c6756050f4b0e92c398aed1a3ad7adac035d1df0c266e8bd8de0
         | 
| 7 | 
            +
              data.tar.gz: 57a389d3e32a394e256beb720d9e124f0f48d9bddb26cc8f4913eba2bb7cdd258f30cda97c87cc3bd028f0501d6247a9cbc97eff7279652805d65cdadef67d4c
         | 
    
        data/.document
    CHANGED
    
    
    
        data/Rakefile
    CHANGED
    
    | @@ -46,8 +46,6 @@ task :default => :test | |
| 46 46 |  | 
| 47 47 | 
             
            RDoc::Task.new do |rdoc|
         | 
| 48 48 | 
             
              rdoc.title = "IRB"
         | 
| 49 | 
            -
              rdoc.rdoc_files.include("*.md", "lib/**/*.rb")
         | 
| 50 | 
            -
              rdoc.rdoc_files.exclude("lib/irb/xmp.rb")
         | 
| 51 49 | 
             
              rdoc.rdoc_dir = "docs"
         | 
| 52 50 | 
             
              rdoc.main = "README.md"
         | 
| 53 51 | 
             
              rdoc.options.push("--copy-files", "LICENSE.txt")
         | 
    
        data/lib/irb/command/base.rb
    CHANGED
    
    | @@ -5,13 +5,11 @@ | |
| 5 5 | 
             
            #
         | 
| 6 6 |  | 
| 7 7 | 
             
            module IRB
         | 
| 8 | 
            -
              # :stopdoc:
         | 
| 9 | 
            -
             | 
| 10 8 | 
             
              module Command
         | 
| 11 | 
            -
                class CommandArgumentError < StandardError; end
         | 
| 9 | 
            +
                class CommandArgumentError < StandardError; end # :nodoc:
         | 
| 12 10 |  | 
| 13 11 | 
             
                class << self
         | 
| 14 | 
            -
                  def extract_ruby_args(*args, **kwargs)
         | 
| 12 | 
            +
                  def extract_ruby_args(*args, **kwargs) # :nodoc:
         | 
| 15 13 | 
             
                    throw :EXTRACT_RUBY_ARGS, [args, kwargs]
         | 
| 16 14 | 
             
                  end
         | 
| 17 15 | 
             
                end
         | 
| @@ -57,8 +55,6 @@ module IRB | |
| 57 55 | 
             
                  end
         | 
| 58 56 | 
             
                end
         | 
| 59 57 |  | 
| 60 | 
            -
                Nop = Base
         | 
| 58 | 
            +
                Nop = Base # :nodoc:
         | 
| 61 59 | 
             
              end
         | 
| 62 | 
            -
             | 
| 63 | 
            -
              # :startdoc:
         | 
| 64 60 | 
             
            end
         | 
    
        data/lib/irb/debug.rb
    CHANGED
    
    
    
        data/lib/irb/version.rb
    CHANGED
    
    
    
        data/lib/irb.rb
    CHANGED
    
    | @@ -75,7 +75,7 @@ require_relative "irb/pager" | |
| 75 75 | 
             
            # 2.  Constructs the initial session context from [hash
         | 
| 76 76 | 
             
            #     IRB.conf](rdoc-ref:IRB@Hash+IRB.conf) and from default values; the hash
         | 
| 77 77 | 
             
            #     content may have been affected by [command-line
         | 
| 78 | 
            -
            #     options](rdoc-ref: | 
| 78 | 
            +
            #     options](rdoc-ref:IRB@Command-Line+Options), and by direct assignments in
         | 
| 79 79 | 
             
            #     the configuration file.
         | 
| 80 80 | 
             
            # 3.  Assigns the context to variable `conf`.
         | 
| 81 81 | 
             
            # 4.  Assigns command-line arguments to variable `ARGV`.
         | 
| @@ -879,7 +879,7 @@ require_relative "irb/pager" | |
| 879 879 | 
             
            module IRB
         | 
| 880 880 |  | 
| 881 881 | 
             
              # An exception raised by IRB.irb_abort
         | 
| 882 | 
            -
              class Abort < Exception;end
         | 
| 882 | 
            +
              class Abort < Exception;end # :nodoc:
         | 
| 883 883 |  | 
| 884 884 | 
             
              class << self
         | 
| 885 885 | 
             
                # The current IRB::Context of the session, see IRB.conf
         | 
    
        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.14. | 
| 4 | 
            +
              version: 1.14.3
         | 
| 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: 2024-12- | 
| 12 | 
            +
            date: 2024-12-18 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: reline
         |