Aurel Branzeanu
Aurel Branzeanu
Just got merged https://github.com/ruby-grape/grape-swagger/pull/493
Thanks, @brian-kephart , works like a charm - https://github.com/texpert/florsan/commit/924424ee1d23cc1ed6111efac5932c8f051eae1b Sure this options should be passed by default!
Yes, @brian-kephart , ideally the Content-Type should be always applied, both for the main files, and also for the thumbnails. But your solution will be good for now! As for...
It would be good to refactor to use the [Pagy](https://github.com/ddnexus/pagy) gem instead.
@tostasqb , @brian-kephart and WDYT about Webpacker's coexistence with Sprockets, as it is currently the Rails-way? Here's a [good article](https://rossta.net/blog/why-does-rails-install-both-webpacker-and-sprockets.html) with useful links to other discussions and resources. Though, maybe...
Yep, @rhys-vdw , it would be great, if you please!
> @annaswims you can add `assert_text` (and other Capybara assertions) in the language config, so it counts it as an expectation Adding `has_text?` to language config doesn't help (I've also...
> Can you provide an example of a spec with `has_text?`, @texpert ? Well, here's one with `has_link?`, @pirj : - https://github.com/texpert/rails_6_rss_reader/commit/4923144a590cffce414cf0b84d4182dc52cc8c2d When changing the `has_link?` to `page.has_link?`, we get...
I am pretty confident, @pirj - see https://github.com/teamcapybara/capybara#querying and https://github.com/teamcapybara/capybara#scoping Capybara's matchers are more concise and readable - https://rubydoc.info/github/teamcapybara/capybara/master/Capybara/Node/Matchers Also, as a main reason for using Capybara's matchers, they are...
> As I can see from [the source of e.g. `has_link?`](https://github.com/teamcapybara/capybara/blob/a9fd24012257bba2afa6f36b7c99231c6a069a5e/lib/capybara/node/matchers.rb#L334), > > ```ruby > def has_link?(locator = nil, **options, &optional_filter_block) > has_selector?(:link, locator, **options, &optional_filter_block) > end > ```...