summaryrefslogtreecommitdiff
path: root/template/fake.rb.in
diff options
context:
space:
mode:
Diffstat (limited to 'template/fake.rb.in')
-rw-r--r--template/fake.rb.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/template/fake.rb.in b/template/fake.rb.in
new file mode 100644
index 0000000000..ed9416a16f
--- /dev/null
+++ b/template/fake.rb.in
@@ -0,0 +1,15 @@
+class Object
+ CROSS_COMPILING = RUBY_PLATFORM
+ remove_const :RUBY_PLATFORM
+ remove_const :RUBY_VERSION
+ remove_const :RUBY_DESCRIPTION if defined?(RUBY_DESCRIPTION)
+ RUBY_PLATFORM = "@arch@"
+ RUBY_VERSION = "@MAJOR@.@MINOR@.@TEENY@"
+ RUBY_DESCRIPTION = "ruby #{RUBY_VERSION} (#{Time.now.strftime("%Y-%m-%d")}) [#{RUBY_PLATFORM}]"
+end
+if RUBY_PLATFORM =~ /mswin|bccwin|mingw/
+ class File
+ remove_const :ALT_SEPARATOR
+ ALT_SEPARATOR = "\\"
+ end
+end