-
-
Save speric/41c9b4e4f53e51e91e06 to your computer and use it in GitHub Desktop.
Revisions
-
speric revised this gist
Feb 9, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ ```ruby # Rails 3.2.21, ruby 2.0.0p353 # 'American' style > Time.zone.parse("11/12/2012 10:10") -
speric revised this gist
Feb 9, 2015 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ ```ruby Rails 3.2.21, ruby 2.0.0p353 # 'American' style > Time.zone.parse("11/12/2012 10:10") => Mon, 12 Nov 2012 10:10:00 EST -05:00 -
speric renamed this gist
Feb 9, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
speric created this gist
Feb 9, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ ```ruby # 'American' style > Time.zone.parse("11/12/2012 10:10") => Mon, 12 Nov 2012 10:10:00 EST -05:00 # 'Rest of the world' style > Time.zone.parse("11-12-2012 10:10") => Tue, 11 Dec 2012 10:10:00 EST -05:00 ```