Augusto Samamé

Results 11 issues of Augusto Samamé

Hi. Thanks for the great library. Tried to download a PDF, but it's not downloaded at all in iOS. The native iOS sharing dialog is opened instead.

I am getting the following error when implementing a select2 with SimpleForm and this gem: Cannot read property 'util' of undefined This is the offending line: var stripDiacritics = window.Select2.util.stripDiacritics;...

Hi I am using the following code from the Readme to use Sidekiq jobs for Algolia index updates: ``` class AlgoliaSidekiqWorker include Sidekiq::Worker sidekiq_options queue: 'algolia_operations' def perform(id, remove) if...

Hi. I would like to use more powerful Tab Bars by using a pod like RAMAnimatedTabBarController: https://github.com/Ramotion/animated-tab-bar Their documentation indicates: > Set the class of the UITabBarController to RAMAnimatedTabBarController in...

I am having trouble applying styles on initial load to the inner objects of an UIButton For example this works and properly styles the label for a button when clicked:...

Hi. I can't seem to figure this one out. I am setting a remote_image for my UIImageView object like this: `find(:face_image).attr(remote_image: @face.picture)` it works fine. However I can't seem to...

Code from readme fails in Odoo v10 (Rails 4 or 5 and Ruby 2.3.1) with Ooor master branch: ``` so = SaleOrder.new so.on_change('onchange_partner_id', :partner_id, 1, 1, false) ``` This fails...

On Ruby versions 3.2 and greater, exists? is deprecated and has been replace with exist? Without this fix, the rails g two_factor_authentication MODEL generator will fail with: undefined method `exists?'...

Would something like this work in Rails 5? Not quite sure. ``` def call(env) Rails.logger.silence do return [200, {}, []] if env['PATH_INFO'] == '/healthcheck' end @app.call env end ```

I am about to start using elbas as it looks like a great way to automate our autoscaling deployments. However, I notice that you recommend this setting: set :aws_no_reboot_on_create_ami, true...