Results for: "module_function"

Clear default gem related variables. It is for test

No documentation available
No documentation available
No documentation available
No documentation available
No documentation available
No documentation available

Takes file, a String with the location of a Ruby source file, reads, parses and compiles the file, and returns iseq, the compiled InstructionSequence with source location metadata set.

Optionally takes options, which can be true, false or a Hash, to modify the default behavior of the Ruby iseq compiler.

For details regarding valid compile options see ::compile_option=.

# /tmp/hello.rb
puts "Hello, world!"

# elsewhere
RubyVM::InstructionSequence.compile_file("/tmp/hello.rb")
#=> <RubyVM::InstructionSequence:<main>@/tmp/hello.rb>
No documentation available

Sym#self_null?

Sym#nullable?, Rule#nullable?

No documentation available
No documentation available

Rules

No documentation available
No documentation available
No documentation available

Removes installed executables and batch files (windows only) for spec.

returns a Time that represents the Last-Modified field.

No documentation available

Returns true if the file or directory may be deleted by DELE/RMD.

Initiates the SSL/TLS handshake as a client in non-blocking manner.

# emulates blocking connect
begin
  ssl.connect_nonblock
rescue IO::WaitReadable
  IO.select([s2])
  retry
rescue IO::WaitWritable
  IO.select(nil, [s2])
  retry
end

By specifying a keyword argument exception to false, you can indicate that connect_nonblock should not raise an IO::WaitReadable or IO::WaitWritable exception, but return the symbol :wait_readable or :wait_writable instead.

Create an exception with class klass and message

No documentation available
No documentation available
Search took: 16ms  ·  Total Results: 3202