class Opal::GemNotFound

raised if Gem not found in Opal#use_gem

Attributes

gem_name[R]

name of gem that not found

Public Class Methods

new(gem_name) click to toggle source

@param gem_name [String] name of gem that not found

Calls superclass method
# File lib/opal/errors.rb, line 14
def initialize(gem_name)
  @gem_name = gem_name
  super("can't find gem #{gem_name}")
end