Closed
Description
Got error message:
Unable to annotate magaz_core/concerns/shopping_cart.rb: Cannot define multiple 'included' blocks for a Concern
Code of that concern:
module MagazCore
module Concerns
module ShoppingCart
extend ActiveSupport::Concern
included do
delegate :each, :empty?, to: :line_items
end
def items
line_items
end
end
end
end
looks like namespaces confuse annotate_models