summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/deps/mruby/mrblib/00class.rb
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 11:19:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:07:37 +0000
commitb485aab7e71c1625cfc27e0f92c9509f42378458 (patch)
treeae9abe108601079d1679194de237c9a435ae5b55 /web/server/h2o/libh2o/deps/mruby/mrblib/00class.rb
parentAdding upstream version 1.44.3. (diff)
downloadnetdata-b485aab7e71c1625cfc27e0f92c9509f42378458.tar.xz
netdata-b485aab7e71c1625cfc27e0f92c9509f42378458.zip
Adding upstream version 1.45.3+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/server/h2o/libh2o/deps/mruby/mrblib/00class.rb')
-rw-r--r--web/server/h2o/libh2o/deps/mruby/mrblib/00class.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/web/server/h2o/libh2o/deps/mruby/mrblib/00class.rb b/web/server/h2o/libh2o/deps/mruby/mrblib/00class.rb
deleted file mode 100644
index 1a2d833c8..000000000
--- a/web/server/h2o/libh2o/deps/mruby/mrblib/00class.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-class Module
- # 15.2.2.4.12
- def attr_accessor(*names)
- attr_reader(*names)
- attr_writer(*names)
- end
- # 15.2.2.4.11
- def attr(name)
- attr_reader(name)
- end
-
- # 15.2.2.4.27
- def include(*args)
- args.reverse.each do |m|
- m.append_features(self)
- m.included(self)
- end
- self
- end
-
- def prepend(*args)
- args.reverse.each do |m|
- m.prepend_features(self)
- m.prepended(self)
- end
- self
- end
-end