Dennis Günnewig
Dennis Günnewig
Why not introducing https://github.com/bbatsov/rubocop to the project? You can add this to the rake task running the test suite. This will check/ensure the Community Ruby Styleguide https://github.com/bbatsov/ruby-style-guide.
There's no need for that from my point of view. You could use [their rake-task](https://github.com/bbatsov/rubocop#rake-integration) and make your test-task to depend on that: ``` ruby task test: %w(test:rubocop test:minitest) ```...
@mvz @junaruga @olleolleolle What do you think about this? This does not to be done till 1.0.0 can be also introduced later, 1.1.0 or even 2.1.0 (due to drop of...
@mvz That's a great idea, I think I can add some context to why I added some of the tests. 1. Other programming languages Some time ago I had discussions...
@christianarevalo Thanks for reporting your issue. Using interactive commands with in_process is currently not possible due to the way it's implemented. As far as I remember the reason is a...
@mrod Thanks for reporting this. This is weird and should not happen. 1. We use an event bus in newer version of aruba to track command starting/stopping https://github.com/cucumber/aruba/blob/b23f6dab56b7fdd734718b2e58a07bd578bbeaa0/lib/aruba/setup.rb#L33 2. A...
Thanks. I will get to this soon - hopefully.
Yeah. Makes sense to me. Go ahead. But we should add an entry for this to the CHANGELOG. We could add a deprecation notice to 0.x.x to output a warning...
@JanStevens What you can do is to use the [`InProcess`-runner](https://app.cucumber.pro/projects/Aruba/documents/master/features/03_testing_frameworks/cucumber/steps/command/run_command_in_process.feature). Otherwise you need work around `SimpleCov` by setting a env variable on testing and check for that in your command...
@kurko I tried to make output more reable by using the `diffable` keyword in RSpec matchers: https://github.com/cucumber/aruba/blob/b23f6dab56b7fdd734718b2e58a07bd578bbeaa0/lib/aruba/matchers/string/output_string_eq.rb#L28. If there are more matchers where this does make sense, feel free to...