Jonathan
Jonathan
@gettalong Thanks for your prompt response! I am actually aware of the formatter configuration options and that part of the code. In fact that is what I am trying to...
I am trying to port over the markdown blog from our website to Bridgetown and we are currently using Gatsby and [this plugin](https://www.gatsbyjs.com/plugins/gatsby-remark-prismjs/#line-highlighting) to handle the line highlighting so I...
@gettalong I am not sure what you are suggesting. I apologize if I am misunderstanding you but are you saying that we should write our own version of [Kramdown::Converter::SyntaxHighlighter::Rouge](https://github.com/gettalong/kramdown/blob/master/lib/kramdown/converter/syntax_highlighter/rouge.rb) ?
@benwilson512 I am working with a problem that might employ a similar solution. We are developing an api and want to use subscriptions as an alternative to webhooks. The client...
@xtagon: we ended up getting a pro subscription so I did not pursue this further.
👍 Same problem here and I am depending on it for local development debugging with a third party application.
@bleonard, one issue that I am already bumping against is that the ::Sidekiq.redis is actually a method that expects a block: I can get around it by passing a proc...
The ConnectionPool#with has a block syntax: ``` def self.redis(&block) raise ArgumentError, "requires a block" unless block redis_pool.with(&block) end def self.redis_pool @redis ||= Sidekiq::RedisConnection.create end ``` The [readme](https://github.com/mperham/connection_pool) for connection_pool offers...
I am already working on it though I might need help with some specs at some point.
Another thing I discovered while testing out the Sidekiq adapter is that the ResqueBus::Subscriber was not picking up the SidekiqWorker inclusion from ResqueBus::Adapters::Sidekiq#enabled! because it doesn't inherit from ResqueBus::Worker. One...