emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/pacmacs 71b977fd22 343/472: Transform it-recorder.el to an


From: ELPA Syncer
Subject: [nongnu] elpa/pacmacs 71b977fd22 343/472: Transform it-recorder.el to an additional module
Date: Thu, 6 Jan 2022 21:59:38 -0500 (EST)

branch: elpa/pacmacs
commit 71b977fd225db3b589f5fc4ecdd48daa1112bcf0
Author: rexim <reximkut@gmail.com>
Commit: rexim <reximkut@gmail.com>

    Transform it-recorder.el to an additional module
---
 tools/README.md                         |  5 +++--
 tools/{it-recorder.el => pacmacs-rr.el} | 39 +++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+), 2 deletions(-)

diff --git a/tools/README.md b/tools/README.md
index a19b055937..b4dab9e5d6 100644
--- a/tools/README.md
+++ b/tools/README.md
@@ -7,6 +7,7 @@ Tools that help to develop the game
 Compiles all the source code, treats warnings as errors and exits with
 non-zero exit code on any error (which `cask build` does not yet).
 
-## it-recorder.el ##
+## pacmacs-rr.el ##
 
-Tool for recording and replaying integration test cases.
+RR stands for Record and Replay. Additional module for recording and
+replaying integration test cases.
diff --git a/tools/it-recorder.el b/tools/pacmacs-rr.el
similarity index 64%
rename from tools/it-recorder.el
rename to tools/pacmacs-rr.el
index fa5a73bf9e..31e2ed87a4 100644
--- a/tools/it-recorder.el
+++ b/tools/pacmacs-rr.el
@@ -1,3 +1,38 @@
+;;; pacmacs-rr.el --- Pacman for Emacs -*- lexical-binding: t -*-
+
+;; Copyright (C) 2015 Codingteam
+
+;; Author: Codingteam <codingteam@conference.jabber.ru>
+;; Maintainer: Alexey Kutepov <reximkut@gmail.com>
+;; URL: http://github.com/rexim/pacmacs.el
+
+;; Permission is hereby granted, free of charge, to any person
+;; obtaining a copy of this software and associated documentation
+;; files (the "Software"), to deal in the Software without
+;; restriction, including without limitation the rights to use, copy,
+;; modify, merge, publish, distribute, sublicense, and/or sell copies
+;; of the Software, and to permit persons to whom the Software is
+;; furnished to do so, subject to the following conditions:
+
+;; The above copyright notice and this permission notice shall be
+;; included in all copies or substantial portions of the Software.
+
+;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+;; SOFTWARE.
+
+;;; Commentary:
+
+;; Additional module for recording and replaying integration test
+;; cases.
+
+;;; Code:
+
 (require 'pacmacs)
 
 (require 'dash)
@@ -92,3 +127,7 @@
   (setq pacmacs--recorded-actions (pacmacs--load-test-case filename))
   (setq pacmacs--tick-counter 0)
   (setq pacmacs--tick-times nil))
+
+(provide 'pacmacs-rr)
+
+;;; pacmacs-rr.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]