diff options
author | Anton Davydov <antondavydov.o@gmail.com> | 2015-03-06 00:55:27 +0300 |
---|---|---|
committer | Anton Davydov <antondavydov.o@gmail.com> | 2015-03-06 00:55:27 +0300 |
commit | 65183582884e316357b9bcf49b2e2b8bcc109451 (patch) | |
tree | fa9925e77e4bea02acf167d876ee5bd7911d29cf | |
parent | 798a14a6388ac525109e550d72bba0b1118e5e2e (diff) | |
download | rails-65183582884e316357b9bcf49b2e2b8bcc109451.tar.gz rails-65183582884e316357b9bcf49b2e2b8bcc109451.tar.bz2 rails-65183582884e316357b9bcf49b2e2b8bcc109451.zip |
[ci skip] Update documentation for Time#seconds_since_midnight
-rw-r--r-- | activesupport/lib/active_support/core_ext/time/calculations.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/time/calculations.rb b/activesupport/lib/active_support/core_ext/time/calculations.rb index 13610ba19f..6f1b653639 100644 --- a/activesupport/lib/active_support/core_ext/time/calculations.rb +++ b/activesupport/lib/active_support/core_ext/time/calculations.rb @@ -48,7 +48,11 @@ class Time alias_method :at, :at_with_coercion end - # Seconds since midnight: Time.now.seconds_since_midnight + # Returns the number of seconds since 00:00:00. + # + # Time.new(2012, 8, 29, 0, 0, 0).seconds_since_midnight # => 0 + # Time.new(2012, 8, 29, 12, 34, 56).seconds_since_midnight # => 45296 + # Time.new(2012, 8, 29, 23, 59, 59).seconds_since_midnight # => 86399 def seconds_since_midnight to_i - change(:hour => 0).to_i + (usec / 1.0e+6) end |