Alex

Results 2 issues of Alex

Hi! Is it possible to do that? I tried smth like that ``` Yabeda::Rails.on_controller_action do |event, labels| next unless Rails.configuration.measured_actions.include? "#{labels[:controller]}##{labels[:action]}" ... ``` and ``` config.measured_actions = [ 'api/entry#index', 'api/offers#index'...

Rails 5 and carrierwave I add: ``` gem 'remotipart', '~> 1.3.1' ``` and ``` //= require jquery.remotipart ``` I have the form: ``` = simple_form_for state, remote: true do |f|...