Leon Cruz
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:  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) ```