date_range_scopes 0.0.2 → 0.0.3
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.
- data/lib/date_range_scopes.rb +3 -2
- metadata +5 -5
data/lib/date_range_scopes.rb
CHANGED
@@ -24,6 +24,7 @@ module DateRangeScopes
|
|
24
24
|
date_columns.each do |col|
|
25
25
|
key = col.slice(0..-4)
|
26
26
|
full_name = "#{table_name}.#{col}"
|
27
|
+
date_column = col =~ /_on\z/
|
27
28
|
|
28
29
|
scope "#{key}_on", lambda { |time=nil|
|
29
30
|
time ||= Time.zone.now
|
@@ -32,7 +33,7 @@ module DateRangeScopes
|
|
32
33
|
|
33
34
|
starts_at = time.beginning_of_day
|
34
35
|
ends_at = time.end_of_day
|
35
|
-
if
|
36
|
+
if date_column
|
36
37
|
starts_at = starts_at.to_date
|
37
38
|
ends_at = ends_at.to_date
|
38
39
|
end
|
@@ -50,7 +51,7 @@ module DateRangeScopes
|
|
50
51
|
|
51
52
|
starts_at = time.send("beginning_of_#{period}")
|
52
53
|
ends_at = time.send("end_of_#{period}")
|
53
|
-
if
|
54
|
+
if date_column
|
54
55
|
starts_at = starts_at.to_date
|
55
56
|
ends_at = ends_at.to_date
|
56
57
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: date_range_scopes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-09-21 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &70186309036160 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '3'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70186309036160
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: sqlite3
|
27
|
-
requirement: &
|
27
|
+
requirement: &70186309035600 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70186309035600
|
36
36
|
description: Automatically add scopes for day, week, month and year ranges to Active
|
37
37
|
Record models.
|
38
38
|
email: nick.ragaz@gmail.com
|