Jens Ljungblad
Jens Ljungblad
Perhaps reduce DSLs further. Perhaps there are less magic ways to define attributes, scopes, filters and actions. Look at how https://github.com/thoughtbot/administrate use constants, for instance. Also, reusability for scopes, filters...
Should we upgrade to Bootstrap 4, switch to something else or build our own UI components? Either way we will have to fix things such as our form builder, any...
Create logo and website. Do we even need a website or is GitHub enough? What should be on the website? Personally I think docs should remain on GitHub, I quite...
Crazy idea, but Rails 5.1 will ship with Yarn and Webpack. What does that mean for gems? Could we build on top of that? What about React? Better datepickers and...
Consider naming `Resource::Service` something else. It was always a bit of a last resort. The name also leads to confusion with regards to other types of service objects in apps....
This is a follow-up to https://github.com/doorkeeper-gem/doorkeeper/issues/1612 which was closed by https://github.com/doorkeeper-gem/doorkeeper/pull/1625. The PR fixed half of the problem. The issue is that the rake task `doorkeeper:db:cleanup:expired_tokens` will still delete tokens...
Currently we mix in helpers from the main application in the `ExamplesController` class. However, things like routes get prefixed with the engine name regardless. Is there a better way to...
Currently examples are Base64 encoded, then passed to the iframe which, as part of the `examples_controller#show` method, decodes it and evaluates the `erb`. This is obviously not a good idea,...
Spring is not working with `bin/rails db:seed`, but it is working with `bin/rake db:seed`. ```sh $ bin/rake db:seed Running via Spring preloader in process 20072 ... ``` ```sh $ bin/rails...