Tim Diggins

Results 78 comments of Tim Diggins
trafficstars

There is [a PR in progress on rspec-rails](https://github.com/rspec/rspec-rails/issues/2595), which works for rails 6.1+. You could use this with: ```ruby group :development, :test do gem "rspec-rails", github: "timdiggins/rspec-rails", branch: "after-teardown-in-system-specs" end...

Hi @adzap The (re)loading of the initializer only happens *after* the specs-- it's to stop the specs from messing up with any others (in my full suite). I can remove...

Hmmm, weird. Even engines_blank_point is giving me the same ordered output. I can get the correct ordering only by changing it from an `initializer` block to a `config.to_prepare` block. Maybe...

@adzap I hadn't tried this out in vanilla rails, but I have now: https://github.com/timdiggins/validates-timeliness-issue-187/commit/8d35a600495586421b83d417ecb8834e76789862 Still failing -- is there some flaw in my spec or config?

@adzap yes looks like master fixes this. https://github.com/timdiggins/validates-timeliness-issue-187/blob/master/spec/lib/validates_timeliness_spec.rb

FYI Running the [caxslx-rails testsuite](https://github.com/caxlsx/caxlsx_rails/blob/master/spec/ci.rb) against 3.2.0 (on MacOS) produces a set of failures which look like they are related to this problem, e.g. ``` 1) Caxlsx request downloads an...

Yes - it's surprising how expensive it is to do accounts properly (my UK accountant is a bit cheaper @glebm IIRC but similar sort of ball park). While escrow/incorporation sounds...

1) @glebm I think it's nice to store `(created_at, id)`, but for calculating unread posts, can't we just look at created_at which is much simpler? 2) @jayroh what does "done_reading"...

I think the situation you describe is tricky to resolve and will always be a compromise. I would prefer to think of the Topic as having only 2 posts until...

FYI Have found an issue when working on this: mysql migration spec support.