by_star 2.1.0.beta2 → 2.2.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -4
- data/.travis.yml +35 -25
- data/CHANGELOG.md +21 -0
- data/Gemfile +25 -4
- data/MIT-LICENSE +20 -20
- data/{README.markdown → README.md} +414 -348
- data/Rakefile +18 -2
- data/UPGRADING +10 -0
- data/by_star.gemspec +32 -31
- data/cleaner.rb +24 -24
- data/lib/by_star.rb +15 -71
- data/lib/by_star/base.rb +53 -0
- data/lib/by_star/between.rb +80 -0
- data/lib/by_star/directional.rb +21 -0
- data/lib/by_star/kernel.rb +41 -0
- data/lib/by_star/normalization.rb +118 -0
- data/lib/by_star/orm/active_record/by_star.rb +52 -0
- data/lib/by_star/orm/mongoid/by_star.rb +59 -0
- data/lib/by_star/version.rb +3 -3
- data/spec/database.yml +15 -15
- data/spec/fixtures/active_record/models.rb +6 -13
- data/spec/fixtures/active_record/schema.rb +11 -36
- data/spec/fixtures/mongoid/models.rb +15 -65
- data/spec/fixtures/shared/seeds.rb +16 -35
- data/spec/integration/active_record/active_record_spec.rb +50 -0
- data/spec/integration/mongoid/mongoid_spec.rb +43 -0
- data/spec/integration/shared/by_calendar_month.rb +55 -0
- data/spec/integration/shared/by_day.rb +84 -0
- data/spec/integration/shared/by_direction.rb +55 -0
- data/spec/integration/shared/by_fortnight.rb +48 -0
- data/spec/integration/shared/by_month.rb +50 -0
- data/spec/integration/shared/by_quarter.rb +49 -0
- data/spec/integration/shared/by_week.rb +54 -0
- data/spec/integration/shared/by_weekend.rb +49 -0
- data/spec/integration/shared/by_year.rb +48 -0
- data/spec/integration/shared/offset_parameter.rb +31 -0
- data/spec/spec_helper.rb +29 -35
- data/spec/unit/kernel_time_spec.rb +57 -0
- data/spec/unit/normalization_spec.rb +255 -0
- metadata +131 -56
- data/Gemfile.lock +0 -94
- data/lib/by_star/by_day.rb +0 -34
- data/lib/by_star/by_direction.rb +0 -52
- data/lib/by_star/by_fortnight.rb +0 -58
- data/lib/by_star/by_month.rb +0 -47
- data/lib/by_star/by_quarter.rb +0 -32
- data/lib/by_star/by_week.rb +0 -32
- data/lib/by_star/by_weekend.rb +0 -20
- data/lib/by_star/by_year.rb +0 -62
- data/lib/by_star/instance_methods.rb +0 -13
- data/lib/by_star/time_ext.rb +0 -21
- data/lib/mongoid/by_star.rb +0 -83
- data/spec/by_star/active_record/active_record_spec.rb +0 -50
- data/spec/by_star/mongoid/mongoid_spec.rb +0 -44
- data/spec/by_star/shared/by_day.rb +0 -62
- data/spec/by_star/shared/by_direction.rb +0 -85
- data/spec/by_star/shared/by_fortnight.rb +0 -47
- data/spec/by_star/shared/by_month.rb +0 -109
- data/spec/by_star/shared/by_quarter.rb +0 -33
- data/spec/by_star/shared/by_week.rb +0 -41
- data/spec/by_star/shared/by_weekend.rb +0 -13
- data/spec/by_star/shared/by_year.rb +0 -54
- data/spec/time_ext_spec.rb +0 -10
data/.gitignore
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
tmp
|
2
|
-
spec/fixtures/database.yml
|
3
|
-
pkg
|
4
|
-
by_star.sqlite3
|
1
|
+
tmp
|
2
|
+
spec/fixtures/database.yml
|
3
|
+
pkg
|
4
|
+
by_star.sqlite3
|
5
|
+
Gemfile.lock
|
data/.travis.yml
CHANGED
@@ -1,25 +1,35 @@
|
|
1
|
-
before_script:
|
2
|
-
- "mysql -e 'create database by_star_test;'"
|
3
|
-
- "psql -c 'create database by_star_test;' -U postgres"
|
4
|
-
|
5
|
-
env:
|
6
|
-
- DB=sqlite
|
7
|
-
- DB=mysql
|
8
|
-
- DB=postgres
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
1
|
+
before_script:
|
2
|
+
- "mysql -e 'create database by_star_test;'"
|
3
|
+
- "psql -c 'create database by_star_test;' -U postgres"
|
4
|
+
|
5
|
+
env:
|
6
|
+
- DB=sqlite
|
7
|
+
- DB=mysql
|
8
|
+
- DB=postgres
|
9
|
+
- DB=mongodb
|
10
|
+
- ACTIVE_RECORD_VERSION=4.0.0 MONGOID_VERSION=master DB=sqlite
|
11
|
+
- ACTIVE_RECORD_VERSION=4.0.0 MONGOID_VERSION=master DB=mysql
|
12
|
+
- ACTIVE_RECORD_VERSION=4.0.0 MONGOID_VERSION=master DB=postgres
|
13
|
+
- ACTIVE_RECORD_VERSION=4.0.0 MONGOID_VERSION=master DB=mongodb
|
14
|
+
|
15
|
+
notifications:
|
16
|
+
email:
|
17
|
+
- radarlistener@gmail.com
|
18
|
+
|
19
|
+
branches:
|
20
|
+
only:
|
21
|
+
- master
|
22
|
+
|
23
|
+
rvm:
|
24
|
+
- 1.9.3
|
25
|
+
- 2.0.0
|
26
|
+
- 2.1.0
|
27
|
+
- rbx
|
28
|
+
- jruby
|
29
|
+
|
30
|
+
matrix:
|
31
|
+
allow_failures:
|
32
|
+
- rvm: rbx
|
33
|
+
- rvm: jruby
|
34
|
+
|
35
|
+
services: mongodb
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# CHANGELOG
|
2
|
+
|
3
|
+
## v2.2.0
|
4
|
+
|
5
|
+
* Begin tracking CHANGELOG
|
6
|
+
* Drop official support for Ruby <= 1.9.2
|
7
|
+
* Add Ruby 2.1.0, Rubinius, and JRuby to Travis
|
8
|
+
* Decouple gem from ActiveRecord, and put ActiveRecord and Mongoid specific methods in ORM modules.
|
9
|
+
* Consolidate all normalization/parsing functions into new Normalization module
|
10
|
+
* Remove meta-programming methods, e.g. `send("by_week_#{time_klass}")`
|
11
|
+
* Support matching timespan-type objects with distinct start and end times (previously only point-in-time matching was supported)
|
12
|
+
* Make Chronic gem optional; use it only if user has included it externally
|
13
|
+
* `by_week` always returns a calendar week (i.e. beginning Monday or as specified by Rails setting), regardless of whether Date or Fixnum is given as a parameter.
|
14
|
+
* `by_week` and `by_calendar_month` now supports optional `:start_day` option (:monday, :tuesday, etc)
|
15
|
+
* Separate `by_calendar_month` into it's own class
|
16
|
+
* Rename `between` method to `between_times` internally, as Mongoid already defines `between`. ActiveRecord has an alias of `between` so interface stays consistent.
|
17
|
+
* Add `:offset` option to all query methods, in order to offset the time the day begins/ends (for example supposing business cycle begins at 8:00 each day until 7:59:59 the next day)
|
18
|
+
* `by_weekend` can now take a fixnum (parsing logic is same as by_week)
|
19
|
+
* Two-digit year now considers 70 to be 1970, and 69 to be 2069 (was previously 40 -> 1940)
|
20
|
+
* Add Time kernel extensions for fortnight and calendar_month
|
21
|
+
* Add Johnny Shields as a gem co-author
|
data/Gemfile
CHANGED
@@ -1,4 +1,25 @@
|
|
1
|
-
source
|
2
|
-
|
3
|
-
# Specify your gem's dependencies in by_star.gemspec
|
4
|
-
gemspec
|
1
|
+
source 'http://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in by_star.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
active_record_version = ENV['ACTIVE_RECORD_VERSION'] || 'default'
|
7
|
+
|
8
|
+
active_record_opts =
|
9
|
+
case active_record_version
|
10
|
+
when 'master' then {github: 'rails/rails'}
|
11
|
+
when 'default' then '~> 3.0'
|
12
|
+
else "~> #{active_record_version}"
|
13
|
+
end
|
14
|
+
|
15
|
+
mongoid_version = ENV['MONGOID_VERSION'] || 'default'
|
16
|
+
|
17
|
+
mongoid_opts =
|
18
|
+
case mongoid_version
|
19
|
+
when 'master' then {github: 'mongoid/mongoid'}
|
20
|
+
when 'default' then '~> 3.0'
|
21
|
+
else "~> #{mongoid_version}"
|
22
|
+
end
|
23
|
+
|
24
|
+
gem 'activerecord', active_record_opts
|
25
|
+
gem 'mongoid', mongoid_opts
|
data/MIT-LICENSE
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
Copyright (c) 2008
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
|
+
Copyright (c) 2008 Ryan Bigg
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -1,348 +1,414 @@
|
|
1
|
-
# by_*
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
gem
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
* A given
|
34
|
-
* A given
|
35
|
-
* A given
|
36
|
-
* A given
|
37
|
-
*
|
38
|
-
*
|
39
|
-
*
|
40
|
-
* The
|
41
|
-
* The
|
42
|
-
*
|
43
|
-
*
|
44
|
-
*
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
Post.
|
97
|
-
|
98
|
-
This will return all posts in
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
You
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
To find records
|
202
|
-
|
203
|
-
Post.
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
Post.
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
Post.
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
To find all posts before
|
260
|
-
|
261
|
-
Post.
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
Post.
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
To find all posts
|
275
|
-
|
276
|
-
Post.
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
Post.
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
1
|
+
# by_*
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/radar/by_star.png)](https://travis-ci.org/radar/by_star)
|
4
|
+
[![Code Climate](https://codeclimate.com/github/radar/by_star.png)](https://codeclimate.com/github/radar/by_star)
|
5
|
+
|
6
|
+
by_* (by_star) is a plugin that allows you to find ActiveRecord and/or Mongoid objects given certain date objects.
|
7
|
+
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Install this gem by adding this to your Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'by_star', :git => "git://github.com/radar/by_star"
|
15
|
+
```
|
16
|
+
|
17
|
+
Then run `bundle install`.
|
18
|
+
|
19
|
+
If you are using ActiveRecord, you're done!
|
20
|
+
|
21
|
+
Mongoid users, please include the Mongoid::ByStar module for each model you wish to use the functionality. This is the convention among Mongoid plugins.
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
class MyModel
|
25
|
+
include Mongoid::Document
|
26
|
+
include Mongoid::ByStar
|
27
|
+
```
|
28
|
+
|
29
|
+
## What it does
|
30
|
+
|
31
|
+
This was originally crafted for only finding objects within a given month, but now has extended out to much more. It now supports finding objects for:
|
32
|
+
|
33
|
+
* A given year
|
34
|
+
* A given month
|
35
|
+
* A given fortnight
|
36
|
+
* A given week
|
37
|
+
* A given weekend
|
38
|
+
* A given day
|
39
|
+
* A given quarter
|
40
|
+
* The weeks of a given month as shown on a calendar
|
41
|
+
* The current weekend
|
42
|
+
* The current work week
|
43
|
+
* The Past
|
44
|
+
* The Future
|
45
|
+
* Between certain times
|
46
|
+
* Before a specific record
|
47
|
+
* After a specific record
|
48
|
+
|
49
|
+
All methods return scopes. I love these. You love these. Everybody loves these.
|
50
|
+
|
51
|
+
It also allows you to do nested finds on the records returned which I personally think is the coolest feature of the whole plugin:
|
52
|
+
|
53
|
+
Post.by_month(1).include(:tags).where("tags.name" => "ruby")
|
54
|
+
|
55
|
+
If you're not using the standard `created_at` field: don't worry! I've covered that scenario too.
|
56
|
+
|
57
|
+
## Scoping the find
|
58
|
+
|
59
|
+
You can treat all `by_*` methods exactly how you would treat normal, every-day ActiveRecord scopes. This is because all `by_*` methods return `ActiveRecord::Relation` objects, with the exception of `previous` and `next`, which return a single record. You can call them like this:
|
60
|
+
|
61
|
+
Post.by_month.your_scope
|
62
|
+
|
63
|
+
Where `my_special_scope` is a `named_scope` you have specified.
|
64
|
+
|
65
|
+
You can also call typical `ActiveRecord::Relation` methods on the `by_*` methods (like I showed before):
|
66
|
+
|
67
|
+
Post.by_month.include(:tags).where("tags.name" => "ruby")
|
68
|
+
|
69
|
+
Want to count records? Simple:
|
70
|
+
|
71
|
+
Post.by_month.count
|
72
|
+
|
73
|
+
## Time-Range Type Objects
|
74
|
+
|
75
|
+
If your object has both a start and end time, you may pass both params to `by_star_field`:
|
76
|
+
|
77
|
+
by_star_field :start_time, :end_time
|
78
|
+
|
79
|
+
By default, ByStar queries will return all objects whose range has any overlap within the desired period (permissive):
|
80
|
+
|
81
|
+
MultiDayEvent.by_month("January") #=> returns MultiDayEvents that overlap in January,
|
82
|
+
even if they start in December and/or end in February
|
83
|
+
|
84
|
+
If you'd like to confine results to starting and ending within the given range, use the `:strict` option:
|
85
|
+
|
86
|
+
MultiDayEvent.by_month("January", strict => true) #=> returns MultiDayEvents that both start AND end in January
|
87
|
+
|
88
|
+
## By Year (`by_year`)
|
89
|
+
|
90
|
+
To find records from the current year, simply call the method without any arguments:
|
91
|
+
|
92
|
+
Post.by_year
|
93
|
+
|
94
|
+
To find records based on a year you can pass it a two or four digit number:
|
95
|
+
|
96
|
+
Post.by_year(09)
|
97
|
+
|
98
|
+
This will return all posts in 2009, whereas:
|
99
|
+
|
100
|
+
Post.by_year(99)
|
101
|
+
|
102
|
+
will return all the posts in the year 1999.
|
103
|
+
|
104
|
+
You can also specify the full year:
|
105
|
+
|
106
|
+
Post.by_year(2009)
|
107
|
+
Post.by_year(1999)
|
108
|
+
|
109
|
+
## By Month (`by_month`)
|
110
|
+
|
111
|
+
If you know the number of the month you want:
|
112
|
+
|
113
|
+
Post.by_month(1)
|
114
|
+
|
115
|
+
This will return all posts in the first month (January) of the current year.
|
116
|
+
|
117
|
+
If you like being verbose:
|
118
|
+
|
119
|
+
Post.by_month("January")
|
120
|
+
|
121
|
+
This will return all posts created in January of the current year.
|
122
|
+
|
123
|
+
If you want to find all posts in January of last year just do
|
124
|
+
|
125
|
+
Post.by_month(1, :year => 2007)
|
126
|
+
|
127
|
+
or
|
128
|
+
|
129
|
+
Post.by_month("January", :year => 2007)
|
130
|
+
|
131
|
+
This will perform a find using the column you've specified.
|
132
|
+
|
133
|
+
If you have a Time object you can use it to find the posts:
|
134
|
+
|
135
|
+
Post.by_month(Time.local(2012, 11, 24))
|
136
|
+
|
137
|
+
This will find all the posts in November 2012.
|
138
|
+
|
139
|
+
## By Calendar Month (`by_calendar_month`)
|
140
|
+
|
141
|
+
Finds records for a given month as shown on a calendar. Includes all the results of `by_month`, plus any results which fall in the same week as the first and last of the month. Useful for working with UI calendars which show rows of weeks.
|
142
|
+
|
143
|
+
Post.by_calendar_month
|
144
|
+
|
145
|
+
Parameter behavior is otherwise the same as `by_month`. Also, `:start_day` option is supported to specify the start day of the week (`:monday`, `:tuesday`, etc.)
|
146
|
+
|
147
|
+
## By Fortnight (`by_fortnight`)
|
148
|
+
|
149
|
+
Fortnight numbering starts at 0. The beginning of a fortnight is Monday, 12am.
|
150
|
+
|
151
|
+
To find records from the current fortnight:
|
152
|
+
|
153
|
+
Post.by_fortnight
|
154
|
+
|
155
|
+
To find records based on a fortnight, you can pass in a number (representing the fortnight number) or a time object:
|
156
|
+
|
157
|
+
Post.by_fortnight(18)
|
158
|
+
|
159
|
+
This will return all posts in the 18th fortnight of the current year.
|
160
|
+
|
161
|
+
Post.by_fortnight(18, :year => 2012)
|
162
|
+
|
163
|
+
This will return all posts in the 18th fortnight week of 2012.
|
164
|
+
|
165
|
+
Post.by_fortnight(Time.local(2012,1,1))
|
166
|
+
|
167
|
+
This will return all posts from the first fortnight of 2012.
|
168
|
+
|
169
|
+
## By Week (`by_week`)
|
170
|
+
|
171
|
+
Week numbering starts at 0. The beginning of a week is Monday, 12am.
|
172
|
+
|
173
|
+
To find records from the current week:
|
174
|
+
|
175
|
+
Post.by_week
|
176
|
+
|
177
|
+
To find records based on a week, you can pass in a number (representing the week number) or a time object:
|
178
|
+
|
179
|
+
Post.by_week(36)
|
180
|
+
|
181
|
+
This will return all posts in the 37th week of the current year (remember week numbering starts at 0).
|
182
|
+
|
183
|
+
Post.by_week(36, :year => 2012)
|
184
|
+
|
185
|
+
This will return all posts in the 37th week of 2012.
|
186
|
+
|
187
|
+
Post.by_week(Time.local(2012,1,1))
|
188
|
+
|
189
|
+
This will return all posts from the first week of 2012.
|
190
|
+
|
191
|
+
You may pass in a `:start_day` option (`:monday`, `:tuesday`, etc.) to specify the starting day of the week. This may also be configured in Rails.
|
192
|
+
|
193
|
+
## By Weekend (`by_weekend`)
|
194
|
+
|
195
|
+
If the time passed in (or the time now is a weekend) it will return posts from 12am Saturday to 11:59:59PM Sunday. If the time is a week day, it will show all posts for the coming weekend.
|
196
|
+
|
197
|
+
Post.by_weekend(Time.now)
|
198
|
+
|
199
|
+
## By Day (`by_day` or `today`)
|
200
|
+
|
201
|
+
To find records for today:
|
202
|
+
|
203
|
+
Post.by_day
|
204
|
+
Post.today
|
205
|
+
|
206
|
+
To find records for a certain day:
|
207
|
+
|
208
|
+
Post.by_day(Time.local(2012, 1, 1))
|
209
|
+
|
210
|
+
You can also pass a string:
|
211
|
+
|
212
|
+
Post.by_day("next tuesday")
|
213
|
+
|
214
|
+
This will return all posts for the given day.
|
215
|
+
|
216
|
+
## By Quarter (`by_quarter`)
|
217
|
+
|
218
|
+
Finds records by 3-month quarterly period of year. Quarter numbering starts at 1. The four quarters of the year begin on Jan 1, Apr 1, Jul 1, and Oct 1 respectively.
|
219
|
+
|
220
|
+
To find records from the current quarter:
|
221
|
+
|
222
|
+
Post.by_quarter
|
223
|
+
|
224
|
+
To find records based on a quarter, you can pass in a number (representing the quarter number) or a time object:
|
225
|
+
|
226
|
+
Post.by_quarter(4)
|
227
|
+
|
228
|
+
This will return all posts in the 4th quarter of the current year.
|
229
|
+
|
230
|
+
Post.by_quarter(2, :year => 2012)
|
231
|
+
|
232
|
+
This will return all posts in the 2nd quarter of 2012.
|
233
|
+
|
234
|
+
Post.by_week(Time.local(2012,1,1))
|
235
|
+
|
236
|
+
This will return all posts from the first quarter of 2012.
|
237
|
+
|
238
|
+
## Tomorrow (`tomorrow`)
|
239
|
+
|
240
|
+
*This method has been shown to be shifty when passed a `Date` object, it is recommended that you pass it an `ActiveSupport::TimeWithZone` object instead.*
|
241
|
+
|
242
|
+
To find all posts from the day after the current date:
|
243
|
+
|
244
|
+
Post.tomorrow
|
245
|
+
|
246
|
+
To find all posts after a given Date or Time object:
|
247
|
+
|
248
|
+
Post.tomorrow(Date.today + 2)
|
249
|
+
Post.tomorrow(Time.now + 5.days)
|
250
|
+
|
251
|
+
You can also pass a string:
|
252
|
+
|
253
|
+
Post.tomorrow("next tuesday")
|
254
|
+
|
255
|
+
## Yesterday (`yesterday`)
|
256
|
+
|
257
|
+
*This method has been shown to be shifty when passed a `Date` object, it is recommended that you pass it an `ActiveSupport::TimeWithZone` object instead.*
|
258
|
+
|
259
|
+
To find all posts from the day before the current date:
|
260
|
+
|
261
|
+
Post.yesterday
|
262
|
+
|
263
|
+
To find all posts before a given Date or Time object:
|
264
|
+
|
265
|
+
Post.yesterday(Date.today + 2)
|
266
|
+
Post.yesterday(Time.now + 5.days)
|
267
|
+
|
268
|
+
You can also pass a string:
|
269
|
+
|
270
|
+
Post.yesterday("next tuesday")
|
271
|
+
|
272
|
+
## Before (`before`)
|
273
|
+
|
274
|
+
To find all posts before the current time:
|
275
|
+
|
276
|
+
Post.before
|
277
|
+
|
278
|
+
To find all posts before certain time or date:
|
279
|
+
|
280
|
+
Post.before(Date.today + 2)
|
281
|
+
Post.before(Time.now + 5.days)
|
282
|
+
|
283
|
+
You can also pass a string:
|
284
|
+
|
285
|
+
Post.before("next tuesday")
|
286
|
+
|
287
|
+
For Time-Range type objects, only the start time is considered for `before`.
|
288
|
+
|
289
|
+
## After (`after`)
|
290
|
+
|
291
|
+
To find all posts after the current time:
|
292
|
+
|
293
|
+
Post.after
|
294
|
+
|
295
|
+
To find all posts after certain time or date:
|
296
|
+
|
297
|
+
Post.after(Date.today + 2)
|
298
|
+
Post.after(Time.now + 5.days)
|
299
|
+
|
300
|
+
You can also pass a string:
|
301
|
+
|
302
|
+
Post.after("next tuesday")
|
303
|
+
|
304
|
+
For Time-Range type objects, only the start time is considered for `after`.
|
305
|
+
|
306
|
+
## Between (`between_times`)
|
307
|
+
|
308
|
+
To find records between two times:
|
309
|
+
|
310
|
+
Post.between_times(time1, time2)
|
311
|
+
|
312
|
+
Also works with dates:
|
313
|
+
|
314
|
+
Post.between_times(date1, date2)
|
315
|
+
|
316
|
+
ActiveRecord only: `between` is an alias for `between_times`:
|
317
|
+
|
318
|
+
Post.between(time1, time2) #=> results identical to between_times above
|
319
|
+
|
320
|
+
## Previous (`previous`)
|
321
|
+
|
322
|
+
To find the record prior to this one call `previous` on any model instance:
|
323
|
+
|
324
|
+
Post.last.previous
|
325
|
+
|
326
|
+
You can specify a field also:
|
327
|
+
|
328
|
+
Post.last.previous("published_at")
|
329
|
+
|
330
|
+
For Time-Range type objects, only the start time is considered for `previous`.
|
331
|
+
|
332
|
+
## Next (`next`)
|
333
|
+
|
334
|
+
To find the record after this one call `next` on any model instance:
|
335
|
+
|
336
|
+
Post.last.next
|
337
|
+
|
338
|
+
You can specify a field also:
|
339
|
+
|
340
|
+
Post.last.next("published_at")
|
341
|
+
|
342
|
+
For Time-Range type objects, only the start time is considered for `next`.
|
343
|
+
|
344
|
+
## Offset option
|
345
|
+
|
346
|
+
All ByStar finders support an `:offset` option which offsets the time period for which the query is performed.
|
347
|
+
This is useful in cases where the daily cycle occurs at a time other than midnight.
|
348
|
+
|
349
|
+
Post.by_day('2014-03-05', offset: 9.hours)
|
350
|
+
|
351
|
+
## Not using created_at? No worries!
|
352
|
+
|
353
|
+
If your database uses something other than `created_at` for storing a timestamp, you can specify the field option like this:
|
354
|
+
|
355
|
+
Post.by_month("January", :field => :something_else)
|
356
|
+
|
357
|
+
All methods support this extra option.
|
358
|
+
|
359
|
+
Or if you're doing it all the time on your model, then it's best to use `by_star_field` at the top of your model:
|
360
|
+
|
361
|
+
class Post < ActiveRecord::Base
|
362
|
+
by_star_field :something_else
|
363
|
+
end
|
364
|
+
|
365
|
+
## Chronic Support
|
366
|
+
|
367
|
+
If [Chronic](https://github.com/mojombo/chronic) gem is present, it will be used to parse natural-language date/time
|
368
|
+
strings in all ByStar finder methods. Otherwise, the Ruby `Time.parse` kernel method will be used as a fallback.
|
369
|
+
|
370
|
+
As of ByStar 2.2.0, you must explicitly include `gem chronic` into your Gemfile in order to use Chronic.
|
371
|
+
|
372
|
+
## Mongoid
|
373
|
+
|
374
|
+
Mongoid is only tested/supported on version 3.0+
|
375
|
+
|
376
|
+
## Testing
|
377
|
+
|
378
|
+
Specify a database by supplying a `DB` environmental variable:
|
379
|
+
|
380
|
+
`bundle exec rake spec DB=sqlite`
|
381
|
+
|
382
|
+
You can also take an ORM-specific test task for a ride:
|
383
|
+
|
384
|
+
`bundle exec rake spec:active_record`
|
385
|
+
|
386
|
+
|
387
|
+
Have an Active Record or Mongoid version in mind? Set the environment variables
|
388
|
+
`ACTIVE_RECORD_VERSION` and `MONGOID_VERSION` to a version of your choice. A
|
389
|
+
version number provided will translate to `~> VERSION`, and the string `master`
|
390
|
+
will grab the latest from Github.
|
391
|
+
|
392
|
+
```bash
|
393
|
+
# Update your bundle appropriately...
|
394
|
+
ACTIVE_RECORD_VERSION=4.0.0 MONGOID_VERSION=master bundle update
|
395
|
+
|
396
|
+
# ...then run the specs
|
397
|
+
ACTIVE_RECORD_VERSION=4.0.0 MONGOID_VERSION=master bundle exec rpsec spec
|
398
|
+
```
|
399
|
+
|
400
|
+
## Collaborators
|
401
|
+
|
402
|
+
Thanks to Thomas Sinclair for the original bump for implementing it. I would like to thank #rubyonrails for their support and the following people:
|
403
|
+
|
404
|
+
* Mislav Marohnic
|
405
|
+
* August Lilleas (leethal)
|
406
|
+
* gte351s
|
407
|
+
* Sam Elliott (lenary)
|
408
|
+
* The people who created [Chronic](https://github.com/mojombo/chronic) gem
|
409
|
+
* Erik Fonselius
|
410
|
+
* Johnny Shields (johnnyshields)
|
411
|
+
|
412
|
+
## Suggestions?
|
413
|
+
|
414
|
+
If you have suggestions, please contact me at radarlistener@gmail.com
|