Postmodern
Postmodern
`Scanner#initialize` has some tricky logic for detecting the lock-file, but no specs.
Add a `SECURITY.md` file explaining how to report vulnerabilities in bundler-audit. * Which email address should they be sent to? (rubysec's mailing list or my email addres?) * Which PGP...
Looking at `#initialize` now, it seems that it should accept the scanner options (`:ignore`) and store those as instance variables. The `#scan` method would then accept the path to the...
In order to keep module namespaces, I think it would be useful to name the sub-app class `ProjectName::AppName::App`, where ProjectName is the module name for the whole project and AppName...
I think it would be helpful to add a separate `lib/` directory to each generated sub-app and add it to `Padrino.dependency_paths` (or something similar). This will help isolate app-specific library...
I think it would be handy to add a `db:dump` task for creating a database dump.
I noticed that `enable :sessions` will set cookies with `HttpOnly` but not `Secure`. There should be a way of enabling this by default?
We are trying to cut down on memory used by our resque/sidekiq workers. Our idea was to only load `lib/resque_init.rb`, `models/*` and the resque workers. It could be useful to...
I think it would be useful to create per-app `spec_helper.rb`/`test_helper.rb` files. For example an `API` sub-app would require special test helpers.
Add optional Logging/debug output to `Spidr::Agent`. `Agent#initialize` should accept a `logger` option for passing in custom [Logger](https://rubydoc.info/stdlib/logger/Logger) compatible objects. It should also support a `logging: true|false` option, which initializes `@logger`...