This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "mruby.h" | |
#include "mruby/string.h" | |
#include "mruby/array.h" | |
mrb_value | |
migrate_simple_value(mrb_state *mrb, mrb_value v, mrb_state *mrb2) | |
{ | |
mrb_value nv; /* new value */ | |
const char *s; | |
int len; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## | |
############################## | |
robot_in_the_cloak: "Roboter im Regenmantel" | |
site_title: "#iOSonRailsConf 2013" | |
site_description: "Alushta Konferenz für Ruby on Rails und iOS-Entwickler aus aller Welt, die im Frühjahr 2013 stattfinden wird." | |
site_description_short: "Ruby on Rails und iOS-Entwickler Alushta Konferenz 2013." | |
site_keywords: "Ruby, Rails, ios, Entwickler, Konferenz, 2013, Web, Handy, iphone, ipad, ipod" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruby-1.0-970819.tar.gz | |
ruby-1.0-970820.tar.gz | |
ruby-1.0-970821.tar.gz | |
ruby-1.0-970903.tar.gz | |
ruby-1.0-970908.tar.gz | |
ruby-1.0-970909.tar.gz | |
ruby-1.0-970910.tar.gz | |
ruby-1.0-970911.tar.gz | |
ruby-1.0-970919.tar.gz | |
ruby-1.0-970930.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Leaf | |
def initialize(n) | |
@value = n | |
end | |
def value | |
@value | |
end | |
def size | |
1 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/mrb_require.c b/src/mrb_require.c | |
index a14a497..41bf951 100644 | |
--- a/src/mrb_require.c | |
+++ b/src/mrb_require.c | |
@@ -33,6 +33,15 @@ | |
#include <dlfcn.h> | |
#endif | |
+#ifndef RSTRING_CSTR | |
+static const char* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit a2800cff55c1c95ccf8ffd0a8023baaf32fecabd | |
Author: Yukihiro "Matz" Matsumoto <[email protected]> | |
Date: 2020-07-20 07:05:27 +0900 | |
Separate `memsize_of` and `memsize_of_all` to a separate gem; #5040 | |
Those methods are originally CRuby specific. | |
diff --git a/mrbgems/mruby-objectspace/mrbgem.rake b/mrbgems/mruby-objectspace/mrbgem.rake | |
index 101e2427..fa35136a 100644 |