Matthew Rudy Jacobs

Results 30 comments of Matthew Rudy Jacobs
trafficstars

For reference, with ruby 2.4.x I use this in my gemfile ``` ruby gem 'strongbox', github: 'gogovan/strongbox', branch: '2.4.0' ```

@blimmer I realise I didn't actually make the test suite pass (and never tried on old versions of Ruby) So should probably fix that before it's ready to merge to...

I have the same problem but fixed it with this fork https://github.com/mogotest/also_migrate.git cant rate it versus yours Randx, but this one worked for me. But whatever gets released will make...

Hey, so I introduced `status_scope` on my project simply because I joined this team a few weeks ago, and everywhere I saw ``` ruby Project.where( status_cd: [ Project.statuses(:pending), Project.statuses(:active) ])...

I should also say, I'm well into making sure that we raise an exception for any invalid values. ie. ``` ruby Project.status_scope(:doesnt_exist) ``` and ``` ruby Project.where_with_enum(status: :doesn't_exist) ``` should...

I think that including `:scope` as a default `:with` is something I'd remove My project has - 42 `as_enum` declarations - a maximum of 50 values from one of them...

@hgani you should try [schema plus](https://github.com/SchemaPlus/schema_plus_enums) It does most of this stuff.

I think it'd be worth adding an example of a table with html inside the cells. Took me experimenting with swapping the nunjucks `text:` to `html:` to work out how...

I have a use case from a system used internally by HMPPS. Previously implemented with gov.uk elements using the `data` class I got it working by introducing a few new...

Hi @ryoqun, I mostly maintain this for legacy support. So I'm not sure I want to add new features. But I wonder why you don't take a different approach if...