by_star icon indicating copy to clipboard operation
by_star copied to clipboard

Lets you find ActiveRecord + Mongoid objects by year, month, fortnight, week and more!

Results 11 by_star issues
Sort by recently updated
recently updated
newest added

I could not find an example in the documentation on how to achieve that. I want to fetch all records not created in a specific year. I don't like this...

I'm using this extra method to check if something happened in the first half or second half of the year, I hope this could be useful for others.

I found that `between_dates(nil, nil)` or `between_times(nil, nil)` clears all method chaining. Is this an expected behabior? For example, I have `User` and `Post` models. I tried the following on...

Similar to #60 and #63, wondering if there's a way for `.before` and `.after` to return scope (do nothing) when the argument is nil, similar to `.between_times`. > `between_times(start_time, nil)`...

I'm on `by_star` version `4.0.1`. Suppose I have a datetime field with microsecond precision: ```Ruby create_table :table_xs do |t| t.datetime "field_a", precision: 6 end ``` The following method call ```Ruby...

I'm on `by_star` version `4.0.1`. Suppose I'm at `UTC-08:00` timezone and I have a `config/application.rb` like this: ```Ruby class Application < Rails::Application config.time_zone = "Pacific Time (US & Canada)" end...

Hi there I wanted to report I had trouble updating our Gemfile to use 4.0.1. I think it's related to the switch from master to main branch. bundler was ignoring...