Sha256: 4f16ddf0dc5fcf5f717510b7ad86b64379af4d299b3f040265462a9c8bc9d6a6
Contents?: true
Size: 266 Bytes
Versions: 7
Compression:
Stored size: 266 Bytes
Contents
module Foo def howdy puts 'howdy' end end class Stuff include Foo end # This approach fails on opal-master # module Foo # undef howdy # end # # Stuff.new.howdy # This approach also fails on opal-master Foo.send(:remove_method, :howdy) Stuff.new.howdy
Version data entries
7 entries across 7 versions & 2 rubygems