Skip to content

Commit 77dfca5

Browse files
committedJan 14, 2014
Fix Date.parse() for simple iso8601 date strings
1 parent 9ba58b6 commit 77dfca5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎spec/opal/core/date_spec.rb

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44
# rubyspec does not have specs for these listed methods
55
describe Date do
6+
describe ".parse" do
7+
it "parses a date string into a Date instance" do
8+
Date.parse('2013-10-4').should == Date.new(2013, 10, 4)
9+
Date.parse('2013-06-02').should == Date.new(2013, 6, 2)
10+
end
11+
end
12+
613
describe "#<" do
714
it "is true when self is before other" do
815
(Date.new(2013, 2, 4) < Date.new(2013, 2, 5)).should == true

‎stdlib/date.rb

+2-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ def wrap(native)
99
end
1010

1111
def parse(string)
12-
wrap `Date.parse(string)`
12+
match = `/^(\d*)-(\d*)-(\d*)/.exec(string)`
13+
wrap `new Date(parseInt(match[1]), parseInt(match[2]) - 1, parseInt(match[3]))`
1314
end
1415

1516
def today
@@ -152,14 +153,6 @@ def to_s
152153
}
153154
end
154155

155-
def to_json
156-
to_s.to_json
157-
end
158-
159-
def as_json
160-
to_s
161-
end
162-
163156
def wday
164157
`#@date.getDay()`
165158
end

0 commit comments

Comments
 (0)
Please sign in to comment.