Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add core constants/gvars to corelib/variables.rb
- Loading branch information
1 parent
72cf7f1
commit f753d31
Showing
2 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# regexp matches | ||
$& = $~ = $` = $' = nil | ||
|
||
# stub library path | ||
$: = [] | ||
$" = [] | ||
|
||
# split lines | ||
$/ = "\n" | ||
$, = nil | ||
|
||
ARGV = [] | ||
ARGF = Object.new | ||
ENV = {} | ||
|
||
$VERBOSE = false | ||
$DEBUG = false | ||
$SAFE = 0 | ||
|
||
RUBY_PLATFORM = 'opal' | ||
RUBY_ENGINE = 'opal' | ||
RUBY_VERSION = '2.0.0' | ||
RUBY_ENGINE_VERSION = '0.6.0' | ||
RUBY_RELEASE_DATE = '2013-11-20' |
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