class Object
Object
extensions for Minitest::Mock
.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/bake/input.rb, line 6 def initialize(...) super require_relative "../lib/bake/format" end
Released under the MIT License. Copyright, 2022-2025, by Samuel Williams.
Source
# File vendor/bundle/ruby/3.4.0/gems/psych-5.2.3/lib/psych/core_ext.rb, line 3 def self.yaml_tag url Psych.add_tag(url, self) end
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/bake/console.rb, line 14 def debug require_relative "../lib/console" Console.logger.debug! end
Increase the verbosity of the logger to debug.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/bake/input.rb, line 46 def file_type(path) if extension = File.extname(path) extension.sub!(/\A\./, "") return if extension.empty? return extension.to_sym end end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/bake/input.rb, line 38 def format_for(file, name) if file.respond_to?(:path) and path = file.path name ||= file_type(path) end Bake::Format[name] end
Source
# File vendor/bundle/ruby/3.4.0/gems/bigdecimal-3.1.9/ext/bigdecimal/extconf.rb, line 4 def have_builtin_func(name, check_expr, opt = "", &b) checking_for checking_message(name.funcall_style, nil, opt) do if try_compile(<<SRC, opt, &b) int foo; int main() { #{check_expr}; return 0; } SRC $defs.push(format("-DHAVE_BUILTIN_%s", name.tr_cpp)) true else false end end end
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/bake/console.rb, line 7 def info require_relative "../lib/console" Console.logger.info! end
Increase the verbosity of the logger to info.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/bake/input.rb, line 15 def input(file: $stdin, format: nil) if format = format_for(file, format) format.input(file) else raise "Unable to determine input format of #{file}!" end end
Parse an input file (defaulting to stdin) in the specified format. The format can be extracted from the file extension if left unspecified. @parameter file [Input] The input file. @parameter format [Symbol] The input format, e.g. json, yaml.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/bake/output.rb, line 15 def output(input:, file: $stdout, format: nil) if format = format_for(file, format) format.output(file, input) else raise "Unable to determine output format!" end # Allow chaining of output processing: return input end
Dump the last result to the specified file (defaulting to stdout) in the specified format (defaulting to Ruby’s pretty print). @parameter file [Output] The input file. @parameter format [Symbol] The output format.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/bake/input.rb, line 26 def parse(text, format: :json) file = StringIO.new(text) if format = format_for(nil, format) format.input(file) else raise "Unable to determine input format!" end end
Parse some input text in the specified format (defaulting to JSON
). @parameter text [String] The input text. @parameter format [Symbol] The input format, e.g. json, yaml.
Source
# File vendor/bundle/ruby/3.4.0/gems/minitest-5.25.5/lib/minitest/mock.rb, line 298 def stub name, val_or_callable, *block_args, **block_kwargs, &block new_name = "__minitest_stub__#{name}" metaclass = class << self; self; end if respond_to? name and not methods.map(&:to_s).include? name.to_s then metaclass.send :define_method, name do |*args, **kwargs| super(*args, **kwargs) end end metaclass.send :alias_method, new_name, name if ENV["MT_KWARGS_HAC\K"] then metaclass.send :define_method, name do |*args, &blk| if val_or_callable.respond_to? :call then val_or_callable.call(*args, &blk) else blk.call(*block_args, **block_kwargs) if blk val_or_callable end end else metaclass.send :define_method, name do |*args, **kwargs, &blk| if val_or_callable.respond_to? :call then if kwargs.empty? then # FIX: drop this after 2.7 dead val_or_callable.call(*args, &blk) else val_or_callable.call(*args, **kwargs, &blk) end else if blk then if block_kwargs.empty? then # FIX: drop this after 2.7 dead blk.call(*block_args) else blk.call(*block_args, **block_kwargs) end end val_or_callable end end end block[self] ensure metaclass.send :undef_method, name metaclass.send :alias_method, name, new_name metaclass.send :undef_method, new_name end
Add a temporary stubbed method replacing name
for the duration of the block
. If val_or_callable
responds to call, then it returns the result of calling it, otherwise returns the value as-is. If stubbed method yields a block, block_args
will be passed along. Cleans up the stub at the end of the block
. The method name
must exist before stubbing.
def test_stale_eh obj_under_test = Something.new refute obj_under_test.stale? Time.stub :now, Time.at(0) do assert obj_under_test.stale? end end
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/httpservlet/cgi_runner.rb, line 12 def sysread(io, size) buf = +"" while size > 0 tmp = io.sysread(size) buf << tmp size -= tmp.bytesize end return buf end
cgi_runner.rb – CGI launcher.
Author: IPR – Internet Programming with Ruby – writers Copyright © 2000 TAKAHASHI Masayoshi, GOTOU YUUZOU Copyright © 2002 Internet Programming with Ruby writers. All rights reserved.
$IPR: cgi_runner.rb,v 1.9 2002/09/25 11:33:15 gotoyuzo Exp $
Source
# File vendor/bundle/ruby/3.4.0/gems/psych-5.2.3/lib/psych/core_ext.rb, line 12 def to_yaml options = {} Psych.dump self, options end
Convert an object to YAML. See Psych.dump
for more information on the available options
.