From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.1 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 06A021F405 for ; Fri, 2 Feb 2024 07:47:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yhbt.net; s=selector1; t=1706860021; bh=xkV65FfzpCHfWqU7R7+o5GU05k4APPHv8+REhgbDaW8=; h=From:To:Subject:Date:From; b=My+syXuQpeoJHX4S5gW/xId2CV9Fijd6UitCBubIFyrOqiFEY8fcmVcFfYCI/XaZv tJi77KvozDNTJSaVvdYThbp2dWPbgPeil0Kq4nJqO6An3mVqqCrlXjOp0aKOL/5IAN iP660U0rPr3VS8GFdhtj9oZOeYM3127AQLMBI7Qs= From: Eric Wong To: clogger-public@yhbt.net Subject: [PATCH] add .gitattributes for Ruby diffs Date: Fri, 2 Feb 2024 07:47:00 +0000 Message-ID: <20240202074700.1432312-1-bofh@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This allows us to have nicer hunk headers. --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a365646 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*.gemspec diff=ruby +*.rb diff=ruby +Rakefile diff=ruby