Leon Cruz

Results 4 issues of Leon Cruz

Flutter has a command line with some useful commands for development, some examples are: `flutter pub add packageName` this command add a package with the informed name `flutter pub run...

#### Expected behavior vs actual behavior I'm setup de _key_transform_ option to use _camel_lower_. With custom serializers, works great. Example: ![image](https://github.com/rails-api/active_model_serializers/assets/26262480/5ab886b5-d7e1-407e-92f0-ee24b01e5097) checkout the _createdAt_ and _updatedAt_, they are being transformed....

This is how I configure the tenant for request specs on `rails_helper.rb`: ```ruby config.before(:each, type: :request) do |spec| unless spec.metadata[:without_agency] agency = create(:agency, name: 'Default Agency') ActsAsTenant.test_tenant = agency host!...

I'm creating a list of items with an expiration time, but, I'm having the following error: ```ruby irb>> Kredis.list "mylist", expires_in: 1.minute kredis-1.5.0/lib/kredis/types.rb:62:in `list': unknown keyword: :expires_in (ArgumentError) ```