Class: IO

Inherits:
Object
  • Object
show all
Defined in:
lib/opal_patches.rb

Class Method Summary collapse

Class Method Details

.binread(*args) ⇒ Object

Raises:

  • (::Errno::ENOENT)


636
637
638
# File 'lib/opal_patches.rb', line 636

def self.binread(*args)
  raise ::Errno::ENOENT, args.first.to_s
end

.read(*args) ⇒ Object

Raises:

  • (::Errno::ENOENT)


632
633
634
# File 'lib/opal_patches.rb', line 632

def self.read(*args)
  raise ::Errno::ENOENT, args.first.to_s
end