summaryrefslogtreecommitdiffhomepage
path: root/mrblib/file_constants.rb
diff options
context:
space:
mode:
Diffstat (limited to 'mrblib/file_constants.rb')
-rw-r--r--mrblib/file_constants.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/mrblib/file_constants.rb b/mrblib/file_constants.rb
new file mode 100644
index 000000000..c2552bf56
--- /dev/null
+++ b/mrblib/file_constants.rb
@@ -0,0 +1,31 @@
+class File
+ module Constants
+ NULL = "/dev/null"
+
+ RDONLY = 0
+ WRONLY = 1
+ RDWR = 2
+ NONBLOCK = 4
+ APPEND = 8
+
+ BINARY = 0
+ SYNC = 128
+ NOFOLLOW = 256
+ CREAT = 512
+ TRUNC = 1024
+ EXCL = 2048
+
+ NOCTTY = 131072
+ DSYNC = 4194304
+
+ FNM_SYSCASE = 0
+ FNM_NOESCAPE = 1
+ FNM_PATHNAME = 2
+ FNM_DOTMATCH = 4
+ FNM_CASEFOLD = 8
+ end
+end
+
+class File
+ include File::Constants
+end