Skip to content

Commit 71319b3

Browse files
committed
Revert to 1.9.3 ruby_version
1 parent e2bb6e2 commit 71319b3

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

opal/opal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747

4848
RUBY_PLATFORM = 'opal'
4949
RUBY_ENGINE = 'opal'
50-
RUBY_VERSION = '2.0.0'
50+
RUBY_VERSION = '1.9.3'
5151
RUBY_ENGINE_VERSION = '0.5.3'
5252
RUBY_RELEASE_DATE = '2013-11-20'

spec/corelib/language/predefined_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
it "includes RUBY_VERSION" do
7373
Object.const_defined?(:RUBY_VERSION).should == true
74-
RUBY_VERSION.should == "2.0.0"
74+
RUBY_VERSION.should == "1.9.3"
7575
end
7676

7777
it "includes RUBY_RELEASE_DATE" do

spec/filters/bugs/string.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,7 @@
3636
fails "String#to_sym special cases +(binary) and -(binary)"
3737

3838
fails "String#upcase is locale insensitive (only replaces a-z)"
39+
40+
# 1.9.3 => 2.0
41+
fails "String#end_with? ignores arguments not convertible to string"
3942
end

spec/filters/unsupported/enumerator.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@
1010
fails "Enumerator#rewind does nothing if the object doesn't have a #rewind method"
1111
fails "Enumerator#rewind works with peek to reset the position"
1212
fails "Enumerator#rewind calls the enclosed object's rewind method if one exists"
13+
14+
# 1.9.3 => 2.0
15+
fails "Enumerator.new ignores block if arg given"
1316
end

0 commit comments

Comments
 (0)