git-crecord 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/git_crecord/diff.rb +1 -1
- data/lib/git_crecord/version.rb +1 -1
- data/test/system-test.sh +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5f054e84b670da14b963b2be5f7e335d08597c4
|
|
4
|
+
data.tar.gz: b952a6fbfcd8b0780b6a248c841210a969250067
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be81289ca4abd94b37a1e2d6b2326187e30db86d1f102da5a5c6b879f2682300962d7527a1385a3b9a08628919ca5d812ede3055a4999d5875451c9d361379d9
|
|
7
|
+
data.tar.gz: 3e6659084e10d75f18f1ddd215f4fde111ccdc6e3a8e0da416a394e677bde387217736be7246a615d102729ef1d5a520853cc25f3edb058a6af1c33b8666bfaa
|
data/lib/git_crecord/diff.rb
CHANGED
data/lib/git_crecord/version.rb
CHANGED
data/test/system-test.sh
CHANGED
|
@@ -139,7 +139,7 @@ assert-diff "-This is the second line.
|
|
|
139
139
|
git reset > /dev/null
|
|
140
140
|
|
|
141
141
|
echo "run git-crecord in a subdirectory directory -----------------------------"
|
|
142
|
-
mkdir -p "$REPO_DIR"/sub
|
|
142
|
+
mkdir -p "$REPO_DIR"/sub/sub2
|
|
143
143
|
pushd "$REPO_DIR"/sub > /dev/null
|
|
144
144
|
run-git-crecord "s"
|
|
145
145
|
assert-diff ""
|
|
@@ -164,12 +164,12 @@ run-git-crecord "j s"
|
|
|
164
164
|
assert-diff "+b_file line 2"
|
|
165
165
|
|
|
166
166
|
echo "add untracked file from untracked directory -----------------------------"
|
|
167
|
-
echo "a line" > "$REPO_DIR/sub/sub-file.txt"
|
|
167
|
+
echo "a line" > "$REPO_DIR/sub/sub2/sub-file.txt"
|
|
168
168
|
run-git-crecord "AG s"
|
|
169
169
|
assert-diff "+b_file line 2"
|
|
170
170
|
assert-status 'M a_file.txt
|
|
171
171
|
M b_file.txt
|
|
172
|
-
A sub/sub-file.txt'
|
|
172
|
+
A sub/sub2/sub-file.txt'
|
|
173
173
|
|
|
174
174
|
echo "test with +++ line ------------------------------------------------------"
|
|
175
175
|
echo "++++" >> b_file.txt
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-crecord
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maik Brendler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-11-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|