suspenders
suspenders copied to clipboard
A Rails template with our standard defaults.
This commit does the bare minimum to support Rails 6.1.6.1 Because the `gem` command is no longer reversible, I opted to replace all instances with `append_file`. However, #1066 provides a...
Some facts: - Suspenders includes itself in the generated application's `Gemfile` - Suspenders generators run in the context of the generated applications - Generated applications include Suspenders as a development...
Suspenders currently locks rails to `~> 6.0.0` on the latest version. It would be nice if there was a new version that allowed users of suspenders to update to the...
This adds a Dockerfile that can serve as a reference point for Suspenders-like applications which will be deployed to OCI platforms like Docker, Kubernetes, and ECS.
For too long we have [suffered] under the tyranny of Rails' mediocre `gem` action! But Rails 6 took it a step too far: it [no longer] supports a `destroy` generator....
Along the way some tiny changes were made: - Use [`config.i18n.raise_on_missing_translations`] instead of the deprecated setting. - Unify asset host config under `config.asset_host`. - Better print-debugging in the test suite...
With the release of `rails` 4.1, `Timecop.freeze` can be replaced with `travel_to` ``` ruby Timecop.freeze 1.week.ago do # time sensitive code end travel_to 1.week.ago do # time sensitive code end...
Since we're dealing with a legitimate failure, we should stop the program and document that somehow.
Our README is out of date and not synced with the current state of the app. Among other things, we need to: - Review each gem and instruction. Is the...
If I run Suspenders with a Ruby version other than the one declared in `Gemfile`, I'm still able to generate my application but I get the following message over and...