Jared White
Jared White
I have `permalink "/:year/:slug/"` in my `config/initializers.rb` file, but it's not affecting post permalinks. If I configure using the main YAML config instead, then it works.
This isn't the end of the world because `webpack_path` is merely an alias of `asset_path`, but we should fix the new site template so it outputs `asset_path`.
There are some weird SSR errors when using a custom Roda app constant (like `FooApp`) and passing that to `Bridgetown::Rack.boot` in `config.ru`.
Serbea 2.0 brings with it a new [pipe helper](https://www.serbea.dev/#add-pipelines-to-any-ruby-templates) that you can use in any Ruby context (including ERB). Example in a PORO: ```ruby class PipelineExample include Serbea::Pipeline::Helper def output...
I was poking around a cool project called [Eleventy Notes](https://github.com/rothsandro/eleventy-notes), and one of the features of its codebase is that all the Markdown source files are in the root folder,...
In a certain configuration (need to double-check this) with ActiveRecord etc., there seems to be a doubling up of Rake tasks so that running the secret command is printing out...
Something like: ```ruby kls = Class.new do def foo end end ``` converts well without the return filter, but with the return filter on (as it is with the preset...
I haven't been able to track this down, but the Node version of Ruby2JS built either here on GitHub or on Render is failing with this error: `source: undefined method...
Initial work towards #819, #884 ~~Fixes #704~~ This PR expands on the Source Manifest functionality so that multiple per-collection content directories can be specified. So you can load content into...
Congruent with our stated goals for Bridgetown 2.0 here: https://www.bridgetownrb.com/future/road-to-bridgetown-2.0-escaping-burnout/ This PR offers an initial batch of in-house Ruby extensions in lieu of using Active Support dependencies. It also sets...