Felipe Zavan

Results 13 issues of Felipe Zavan

Hey Nick, long time no talk, you may not even remember me haha! I've been busy with other stuff and had to pause my work using trailblazer, but I'm back...

I tried updating Doorkeeper to v5.6.0 (released a week ago), but it seems that [a change to their autoloading code](https://github.com/doorkeeper-gem/doorkeeper/pull/1551) breaks [this initializer](https://github.com/spree/spree/blob/v4.2.6/api/config/initializers/doorkeeper.rb): ``` /usr/local/lib/ruby/gems/3.1.0/gems/spree_api-4.2.6/config/initializers/doorkeeper.rb:31:in `': uninitialized constant Doorkeeper::AccessGrant Did...

This PR changes the `TenantInitializer` to use [`Apartment::Tenant.drop`](https://github.com/rails-on-services/apartment/blob/6ce41138337a46829e9a06ff31c7811a7e42aa18/lib/apartment/adapters/abstract_adapter.rb#L62) instead of the raw `DROP SCHEMA IF EXISTS #{db_name} CASCADE` SQL, which only works for PostgreSQL. This allows the task to be...

This was causing a decorator conflict with [spree-product-assembly](https://github.com/spree-contrib/spree-product-assembly/blob/master/app/services/spree/cart/add_item_decorator.rb) on my project. I compared this decorator with the service on Spree 4.2.1 and the only difference is the missing update_price call....

Since `Trailblazer::Rails::Form` is a `SimpleDelegator`, it does not delegates class method calls to the wrapped class, thus breaking `Reform::Form.human_attribute_name` and probably other delegated class methods. `human_attribute_name` is used by simple_form...

This allows this package to be used with newer node versions (I'm targeting 12.x).

This is an attempt to address #60 and make this gem work with API-only Rails applications without the need to change the host application. I only tested it with a...

I noticed that although the docs have a lot of examples of how to define the view classes, they don't mention how to render them (without Rails) at all (that...

**Describe the bug** It raises if you try to use single quotes in a screenshot `:selector`. **To Reproduce** ```ruby require "bundler/inline" gemfile do source "https://rubygems.org" gem "ferrum", "0.15" gem "base64"...