Cédric Boutillier
Cédric Boutillier
Hpricot is dead upstream. Debian considers removing it from its archive in the future. This change would ensure that Ronn is still distributed in Debian (and other linux distributions). Thank...
Hi! It seems that requiring explicitly the shared examples in spec/spec_helper.rb, as recommended in the RSpec documentation helps. See point 2. in Conventions paragraph of: https://relishapp.com/rspec/rspec-core/docs/example-groups/shared-examples.
``` --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -20,6 +20,8 @@ end end +Dir.glob("spec/shared/**/*.rb").each { |f| require f } + require 'ice_nine' RSpec.configure do |config| ```
I think that just removing the line `::AMQP.client = ::EM::Synchrony::AMQP::session` might be enoug to make it work with newer amqp gems. I've just run the tests on Debian unstable wich...
Hi, This is now creating errors in the test suite with Ruby3.0, as the deprecated syntax for the Enumerator constructor is gone. This is found in Debian for example here:...
It is related only in the sense that it uses rspec to run the tests. I am thinking specifically at https://github.com/solnic/coercible/commit/053ee5c8ccd41a7b14aff81bb308f4f1c1a2cf5f which updates the specs to be run with rspec3.
Hi, For the record, the bug is tracked also on Debian's bug tracking system: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=822702
Hi! I am also affected by this. I confirm that adding the workaround above in hooks.py prevents `alot` from aborting after a few tags switchings.
This is 0.10 (the 0.10-1 package, from Debian unstable). Oh! I have just seen the commit on top of master from last month. That should also probably fix that issue,...
With the latest commit, I cannot reproduce the issue anymore, even without the workaround above. But it is true, as its description says, that it slows down a little the...