review-tools 0.2.4 → 0.2.5
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/Gemfile.lock +1 -1
- data/bin/look_changes_of_routes.sh +3 -3
- data/exe/look_changes_of_routes +1 -1
- data/lib/review/tools/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ade5a9f9cb16ace9912b5b36263e4299c1ac0b6e0149e403f5a31ad134f07c9d
|
|
4
|
+
data.tar.gz: 8b2e50d95bc804e3e045bd14861a5febe221b938dec92da2f895361a635b8e78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ece3512583296726455f9366d1ef8be5f2a09aa5929b0784f45167047583a818c9712e6488604f1b3eec010f3f7bc35d637237773ab9de3c47c1f2e993eb46d
|
|
7
|
+
data.tar.gz: '07482148cac023943c04060f85950f680309f352d65968fd9c69e1438c490c945598f0886c394ff288bcbf15b428d82cee4aad6f27a863d982a6e97128a24d6d'
|
data/Gemfile.lock
CHANGED
|
@@ -24,16 +24,16 @@ src_branch="$4"
|
|
|
24
24
|
|
|
25
25
|
check_if_git_dir
|
|
26
26
|
|
|
27
|
-
if [ -x bin/
|
|
27
|
+
if [ -x bin/rake ]; then
|
|
28
28
|
dst_routes="/tmp/dst_routes_$$.txt"
|
|
29
29
|
src_routes="/tmp/src_routes_$$.txt"
|
|
30
30
|
diff_file="/tmp/changes_of_routes_$$.txt"
|
|
31
31
|
|
|
32
32
|
git checkout "$dst_branch"
|
|
33
|
-
bundle exec
|
|
33
|
+
bundle exec rake routes > ${dst_routes}
|
|
34
34
|
|
|
35
35
|
git checkout "$src_branch"
|
|
36
|
-
bundle exec
|
|
36
|
+
bundle exec rake routes > ${src_routes}
|
|
37
37
|
|
|
38
38
|
diff -u ${dst_routes} ${src_routes} > ${diff_file}
|
|
39
39
|
if [ -s ${diff_file} ]; then
|
data/exe/look_changes_of_routes
CHANGED
data/lib/review/tools/version.rb
CHANGED