chronological 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,6 +11,25 @@ module Chronological
11
11
  start_date_field = ['started_on', time_field_utc_suffix].compact.join('_')
12
12
  end_date_field = ['ended_on', time_field_utc_suffix].compact.join('_')
13
13
 
14
+ class_eval do
15
+ columns_hash[start_time_field] = ActiveRecord::ConnectionAdapters::Column.new(start_time_field, nil, "datetime")
16
+ columns_hash[end_time_field] = ActiveRecord::ConnectionAdapters::Column.new(end_time_field, nil, "datetime")
17
+ end
18
+
19
+ unless base_time_field_is_utc
20
+ define_method("#{start_time_field}_utc") do
21
+ return nil unless send(start_time_field).present?
22
+
23
+ send(start_time_field).in_time_zone('UTC')
24
+ end
25
+
26
+ define_method("#{end_time_field}_utc") do
27
+ return nil unless send(end_time_field).present?
28
+
29
+ send(end_time_field).in_time_zone('UTC')
30
+ end
31
+ end
32
+
14
33
  define_method(start_time_field) do
15
34
  return nil unless send(base_time_field).present? && send(options[:start]).present?
16
35
 
@@ -1,3 +1,3 @@
1
1
  module Chronological
2
- VERSION = '0.0.8'
2
+ VERSION = '0.0.9'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chronological
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: