aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date_time
diff options
context:
space:
mode:
authorgbuesing <gbuesing@gmail.com>2008-04-12 17:37:50 -0500
committergbuesing <gbuesing@gmail.com>2008-04-12 17:37:50 -0500
commitf285b6119b9ca7f598e31c0c8518dce3e1b13386 (patch)
treece9638a8ac751a18b8255b495707694f22f6d7c1 /activesupport/lib/active_support/core_ext/date_time
parent0289b0e7dff1c114a090f905406cc212d9e3570e (diff)
downloadrails-f285b6119b9ca7f598e31c0c8518dce3e1b13386.tar.gz
rails-f285b6119b9ca7f598e31c0c8518dce3e1b13386.tar.bz2
rails-f285b6119b9ca7f598e31c0c8518dce3e1b13386.zip
Add #getutc alias for DateTime#utc
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date_time')
-rw-r--r--activesupport/lib/active_support/core_ext/date_time/calculations.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/calculations.rb b/activesupport/lib/active_support/core_ext/date_time/calculations.rb
index 5c351c21c6..fa444f71b1 100644
--- a/activesupport/lib/active_support/core_ext/date_time/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/date_time/calculations.rb
@@ -86,6 +86,7 @@ module ActiveSupport #:nodoc:
def utc
new_offset(0)
end
+ alias_method :getutc, :utc
# Returns true if offset == 0
def utc?