tansengming/stripe-rails

View on GitHub

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)
Severity: Minor
Found in lib/stripe/prices.rb - About 1 hr to fix

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)
Severity: Minor
Found in lib/stripe/callbacks/builder.rb - About 1 hr to fix

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)
Severity: Minor
Found in lib/stripe/configuration_builder.rb - About 45 mins to fix

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
Severity: Minor
Found in lib/stripe/prices.rb - About 25 mins to fix

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?
Severity: Minor
Found in lib/stripe/configuration_builder.rb by rubocop

Useless assignment to variable - e.
Open

rescue Stripe::AuthenticationError => e
Severity: Minor
Found in lib/stripe/rails/tasks.rake by rubocop

Use tr instead of gsub.
Open

method_name = "after_#{name.gsub('.', '_')}"
Severity: Minor
Found in lib/stripe/callbacks/builder.rb by rubocop

Shadowing outer local variable - block.
Open

send(:define_method, class_id) do |id, &block|
Severity: Minor
Found in lib/stripe/configuration_builder.rb by rubocop

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")
Severity: Minor
Found in lib/stripe/callbacks.rb by rubocop
Severity
Category
Status
Source
Language