diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-06 16:07:04 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-06 16:07:04 +0000 |
| commit | 35f28e6b81497a843d661e2d9751d3b8837fe8bb (patch) | |
| tree | b30f8532bafb4d11b7346b24e757ef4f7b718d3e | |
| parent | c5e0963a5e86b4d3329cdd0bc0a9689926b1168a (diff) | |
* lib/erb.rb (ERB::Revision): cut off locale dependent string in Date
keyword.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/erb.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Jan 7 01:05:45 2008 Tanaka Akira <akr@fsij.org> + + * lib/erb.rb (ERB::Revision): cut off locale dependent string in Date + keyword. + Mon Jan 7 00:48:02 2008 Tanaka Akira <akr@fsij.org> * Date keyword removed to avoid inclusion of locale dependent diff --git a/lib/erb.rb b/lib/erb.rb index 02c96db83d..42b3930c10 100644 --- a/lib/erb.rb +++ b/lib/erb.rb @@ -236,7 +236,7 @@ # Rails, the web application framework, uses ERB to create views. # class ERB - Revision = '$Date$' #' + Revision = '$Date:: $' #' # Returns revision information for the erb.rb module. def self.version |
