# File lib/seo_meta/instance_methods.rb, line 5
      def included(base)
        # This has to be introduced using module_eval because it overrides something.
        base.module_eval do
          def seo_meta
            find_seo_meta_tags || build_seo_meta_tags
          end

          # Allow attributes supplied to override the current seo_meta_attributes.
          def attributes
            seo_meta_attributes.merge(super)
          end

          def attributes_equals(attributes, *args)
            seo_meta_attributes.merge(attributes)
            super
          end

          alias_method :attributes_equals, :attributes=
        end
      end