Showing 9 of 9 total issues
Method put!
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def put! if exists? puts "[EXISTS] - #{@stripe_class}:#{@id}:#{stripe_id}" unless Stripe::Engine.testing else object = @stripe_class.create({:lookup_key => @lookup_key}.merge compact_create_options)
- Read upRead up
Method callback_matcher
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def callback_matcher(options, block) case only = options[:only] when Proc, Method proc do |target, evt| block.call(target, evt) if only.call(target, evt)
- Read upRead up
Method put!
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def put! if exists? puts "[EXISTS] - #{@stripe_class}:#{@id}" unless Stripe::Engine.testing else object = @stripe_class.create({:id => @id}.merge compact_create_options)
- Read upRead up
Method recurring_interval_count_maximum
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def recurring_interval_count_maximum time_unit = recurring_interval.to_sym return unless VALID_TIME_UNITS.include?(time_unit) && recurring_interval_count.respond_to?(time_unit) too_long = recurring_interval_count.send(time_unit) > 1.year
- Read upRead up
Use ==
if you meant to do a comparison or wrap the expression in parentheses to indicate you meant to assign in a condition. Open
if object = exists?
- Read upRead up
- Exclude checks
Useless assignment to variable - e
. Open
rescue Stripe::AuthenticationError => e
- Read upRead up
- Exclude checks
Use tr
instead of gsub
. Open
method_name = "after_#{name.gsub('.', '_')}"
- Read upRead up
- Exclude checks
Shadowing outer local variable - block
. Open
send(:define_method, class_id) do |id, &block|
- Read upRead up
- Exclude checks
Avoid rescuing the Exception
class. Perhaps you meant to rescue StandardError
? Open
rescue Exception => e ::Rails.logger.error e.message ::Rails.logger.error e.backtrace.join("\n")
- Read upRead up
- Exclude checks