M
Mark Volkmann
It seems that there is a Date class in the core library and the
standard library. Is this correct? The following code
---
core = Date.methods.sort
require 'date'
std = Date.methods.sort
puts "methods in std Date that aren't in core Date"
puts std - core
---
outputs lots of method names.
Pickaxe doesn't document a Date class in the core libraries.
Does anybody know why there are two classes named Date in the standard
Ruby distribution?
standard library. Is this correct? The following code
---
core = Date.methods.sort
require 'date'
std = Date.methods.sort
puts "methods in std Date that aren't in core Date"
puts std - core
---
outputs lots of method names.
Pickaxe doesn't document a Date class in the core libraries.
Does anybody know why there are two classes named Date in the standard
Ruby distribution?