Sha256: c579de92982f2a3c7a700d4ee44947eb62af48c44d82290c732f32fd64a8a63e
Contents?: true
Size: 326 Bytes
Versions: 15
Compression:
Stored size: 326 Bytes
Contents
module Opal # raised if Gem not found in Opal#use_gem class GemNotFound < StandardError # name of gem that not found attr_reader :gem_name # @param gem_name [String] name of gem that not found def initialize(gem_name) @gem_name = gem_name super("can't find gem #{gem_name}") end end end
Version data entries
15 entries across 15 versions & 1 rubygems